using System; using System.Threading.Tasks; using DevHive.Data.Models; using DevHive.Data.Repositories.Interfaces; namespace DevHive.Data.Interfaces { public interface IRatingRepository : IRepository { Task GetRatingByPostId(Guid postId); Task UserRatedPost(Guid userId, Guid postId); } }