7 lines
97 B
C#
7 lines
97 B
C#
namespace Domain
|
|
{
|
|
public interface ICommentRepository
|
|
{
|
|
void Add(Comment comment);
|
|
}
|
|
} |