using IO.Swagger.DTO; using Org.BouncyCastle.Bcpg.OpenPgp; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.IServices { interface INoteService { public List GetNotes(); public List GetNotesByAuteur(Guid? idAuteur); public DetailsNoteDTO GetNoteById(int? idNote); public List GetNotByCollaborateur(Guid? idAuteur, Guid? idCollaborateur); public bool AjouterNote(DetailsNoteDTO nouvelleNote); public bool SupprimerNote(int? idNote); public void UpdateNote(int? idNote, DetailsNoteDTO note); } }