aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Interfaces/IPostService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Services/Interfaces/IPostService.cs')
-rw-r--r--src/DevHive.Services/Interfaces/IPostService.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/DevHive.Services/Interfaces/IPostService.cs b/src/DevHive.Services/Interfaces/IPostService.cs
new file mode 100644
index 0000000..9cb21ed
--- /dev/null
+++ b/src/DevHive.Services/Interfaces/IPostService.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Threading.Tasks;
+using DevHive.Services.Models.Post.Comment;
+using DevHive.Services.Models.Post.Post;
+
+namespace DevHive.Services.Interfaces
+{
+ public interface IPostService
+ {
+ Task<bool> CreatePost(CreatePostServiceModel postServiceModel);
+ Task<bool> AddComment(CreateCommentServiceModel commentServiceModel);
+
+ Task<CommentServiceModel> GetCommentById(Guid id);
+ Task<PostServiceModel> GetPostById(Guid id);
+
+ Task<bool> UpdateComment(UpdateCommentServiceModel commentServiceModel);
+ Task<bool> UpdatePost(UpdatePostServiceModel postServiceModel);
+
+ Task<bool> DeleteComment(Guid id);
+ Task<bool> DeletePost(Guid id);
+
+ Task<bool> ValidateJwtForComment(Guid commentId, string rawTokenData);
+ }
+} \ No newline at end of file