15 lines
295 B
C#
15 lines
295 B
C#
namespace Webzine.Repository.Contracts
|
|
{
|
|
using Webzine.Entity;
|
|
|
|
public interface ICommentaireRepository
|
|
{
|
|
void Add(Commentaire commentaire);
|
|
|
|
void Delete(Commentaire commentaire);
|
|
|
|
Commentaire Find(int id);
|
|
|
|
IEnumerable<Commentaire> FindAll();
|
|
}
|
|
} |