Files
webzine/Webzine.Repository.Contracts/ICommentaireRepository.cs
2026-03-28 10:09:18 +01: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();
}
}