using System; using System.Threading.Tasks; namespace MyHN.Domain { /// /// Permet de persister un commentaire. /// public interface ICommentRepository { Task AddAsync(Comment comment); Task UpdateAsync(Comment comment); Comment GetById(Guid id); } }