hn-20-2/Domain/ICommentRepository.cs

7 lines
97 B
C#

namespace Domain
{
public interface ICommentRepository
{
void Add(Comment comment);
}
}