Ajout du moteur de recherche dans le header

This commit is contained in:
Loic Masi
2026-03-10 21:38:40 +01:00
parent ae1ee725a9
commit 47b3c0bdd7
12 changed files with 334 additions and 93 deletions

View File

@@ -10,20 +10,20 @@ namespace Webzine.Repository.Contracts
// void Delete(Titre titre);
// Titre Find(int idTitre);
Titre? Find(int idTitre);
// IEnumerable<Titre> FindTitres(int offset, int limit);
// IEnumerable<Titre> FindAll();
IEnumerable<Titre> FindAll();
// void IncrementNbLectures(Titre titre);
// void IncrementNbLikes(Titre titre);
// IEnumerable<Titre> Search(string mot);
IEnumerable<Titre> Search(string mot);
// IEnumerable<Titre> SearchByStyle(string libelle);
IEnumerable<Titre> SearchByStyle(string libelle);
// void Update(Titre titre);
}
}
}