aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Interfaces/Repositories/IRatingRepository.cs
blob: 7b99e0ed5655949e7eb2ae5259c01a20b9beeadd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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<int> GetRating(Guid postId);
	}
}