using System; using System.Collections.Generic; using System.Threading.Tasks; using DevHive.Data.Models; namespace DevHive.Data.Interfaces { public interface ICommentRepository : IRepository { Task> GetPostComments(Guid postId); Task DoesCommentExist(Guid id); Task GetCommentByIssuerAndTimeCreatedAsync(Guid issuerId, DateTime timeCreated); } }