using System; using System.Threading.Tasks; namespace HN.Domain { public interface ICommentRepository { Task AddAsync(Comment comment); Task UpdateAsync(Comment comment); Task GetByIdAsync(Guid id); } }