myhn/Domain/ICommentRepository.cs
2021-01-08 16:26:19 +01:00

15 lines
296 B
C#

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