hn-dotnet/Domain/ICommentRepository.cs
Julien Leicher 66cc78d30e comment-a-link (#24)
Closes #23 refactor to use OwnsMany
2020-12-11 09:46:42 +01:00

9 lines
136 B
C#

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