blob: de4e3f24dba215e3d490bcea0afcedd9eb30bfc7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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> GetByPostId(Guid postId);
Task<Tuple<int, int>> GetRating(Guid postId);
Task<bool> HasUserRatedThisPost(Guid userId, Guid postId);
}
}
|