diff options
| author | transtrike <transtrike@gmail.com> | 2021-01-12 13:16:39 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2021-01-12 13:16:39 +0200 |
| commit | 11bd1d9a9760c7bc6a601d78b3d89ec9028647a2 (patch) | |
| tree | 4e74a8fc10a07f58e11d3612373b17a246ec2868 /src/DevHive.Data/Repositories/Contracts/IPostRepository.cs | |
| parent | b14dc0fe3e5ecfca3a7e780a17627f823d59246c (diff) | |
| download | DevHive-11bd1d9a9760c7bc6a601d78b3d89ec9028647a2.tar DevHive-11bd1d9a9760c7bc6a601d78b3d89ec9028647a2.tar.gz DevHive-11bd1d9a9760c7bc6a601d78b3d89ec9028647a2.zip | |
Language layers refactored; User implements adding & removing Languages; Migrations added
Diffstat (limited to 'src/DevHive.Data/Repositories/Contracts/IPostRepository.cs')
| -rw-r--r-- | src/DevHive.Data/Repositories/Contracts/IPostRepository.cs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/DevHive.Data/Repositories/Contracts/IPostRepository.cs b/src/DevHive.Data/Repositories/Contracts/IPostRepository.cs deleted file mode 100644 index 930138a..0000000 --- a/src/DevHive.Data/Repositories/Contracts/IPostRepository.cs +++ /dev/null @@ -1,21 +0,0 @@ -using DevHive.Data.Models; -using System; -using System.Threading.Tasks; - -namespace DevHive.Data.Repositories.Contracts -{ - public interface IPostRepository : IRepository<Post> - { - public Task<bool> AddCommentAsync(Comment entity); - - public Task<Comment> GetCommentByIdAsync(Guid id); - - public Task<bool> EditCommentAsync(Comment newEntity); - - public Task<bool> DeleteCommentAsync(Comment entity); - - public Task<bool> DoesPostExist(Guid postId); - - public Task<bool> DoesCommentExist(Guid id); - } -} |
