refactor: standardiser la journalisation des contrôleurs et l’utilisation des référentiels

This commit is contained in:
mirage
2026-03-25 15:14:14 +01:00
parent adeb2a0550
commit cceff9a02d
18 changed files with 214 additions and 252 deletions

View File

@@ -1,17 +1,17 @@
// using Webzine.Entity;
using Webzine.Entity;
namespace Webzine.Repository.Contracts
{
public interface IArtisteRepository
{
// void Add(Artiste artiste);
void Add(Artiste artiste);
// void Delete(Artiste artiste);
void Delete(Artiste artiste);
// Artiste Find(int id);
Artiste Find(int id);
// IEnumerable<Artiste> FindAll();
IEnumerable<Artiste> FindAll();
// void Update(Artiste artiste);
void Update(Artiste artiste);
}
}