hn-dotnet/Domain/ICommentRepository.cs
2020-12-17 12:00:26 +01:00

11 lines
191 B
C#

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