Files
webzine/Webzine.Repository.Contracts/ICommentaireRepository.cs
2026-03-31 13:44:41 +02:00

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();
}
}