diff options
| author | transtrike <transtrike@gmail.com> | 2021-01-13 11:05:26 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2021-01-13 11:05:26 +0200 |
| commit | 6deaa6edcd8e347d5ed28ee3389cb8712cc64ea3 (patch) | |
| tree | 620b8867f3b5f96aa76c0e5e38e985db91498696 /src/DevHive.Services/Interfaces/IPostService.cs | |
| parent | 8a18cdf741bed465b4b24626e15370c33365cf11 (diff) | |
| download | DevHive-6deaa6edcd8e347d5ed28ee3389cb8712cc64ea3.tar DevHive-6deaa6edcd8e347d5ed28ee3389cb8712cc64ea3.tar.gz DevHive-6deaa6edcd8e347d5ed28ee3389cb8712cc64ea3.zip | |
The return of the interfaces
Diffstat (limited to 'src/DevHive.Services/Interfaces/IPostService.cs')
| -rw-r--r-- | src/DevHive.Services/Interfaces/IPostService.cs | 24 |
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 |
