hn-dotnet/Domain/ICommentRepository.cs
2020-12-11 12:01:59 +01:00

12 lines
230 B
C#

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