hn-dotnet/Domain/ICommentRepository.cs
2020-12-10 18:37:46 +01:00

9 lines
136 B
C#

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