refactor: standardiser la journalisation des contrôleurs et l’utilisation des référentiels
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
// using Webzine.Entity;
|
||||
using Webzine.Entity;
|
||||
|
||||
namespace Webzine.Repository.Contracts
|
||||
{
|
||||
public interface ICommentaireRepository
|
||||
{
|
||||
// void Add(Commentaire commentaire);
|
||||
void Add(Commentaire commentaire);
|
||||
|
||||
// void Delete(Commentaire commentaire);
|
||||
void Delete(Commentaire commentaire);
|
||||
|
||||
// Commentaire Find(int id);
|
||||
Commentaire Find(int id);
|
||||
|
||||
// IEnumerable<Commentaire> FindAll();
|
||||
IEnumerable<Commentaire> FindAll();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user