diff options
Diffstat (limited to 'src/DevHive.Data/Interfaces/Repositories/IRatingRepository.cs')
| -rw-r--r-- | src/DevHive.Data/Interfaces/Repositories/IRatingRepository.cs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/DevHive.Data/Interfaces/Repositories/IRatingRepository.cs b/src/DevHive.Data/Interfaces/Repositories/IRatingRepository.cs deleted file mode 100644 index f77f301..0000000 --- a/src/DevHive.Data/Interfaces/Repositories/IRatingRepository.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Threading.Tasks; -using DevHive.Data.Models; -using DevHive.Data.Repositories.Interfaces; - -namespace DevHive.Data.Interfaces.Repositories -{ - public interface IRatingRepository : IRepository<Rating> - { - Task<Rating> GetRatingByPostId(Guid postId); - Task<bool> UserRatedPost(Guid userId, Guid postId); - } -} |
