You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Digitalisation_EPA_Serveur/IServices/INoteService.cs

20 lines
637 B

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<AffichageNoteDTO> GetNotes();
public List<AffichageNoteDTO> GetNotesByAuteur(Guid? idAuteur);
public DetailsNoteDTO GetNoteById(int? idNote);
public List<AffichageNoteDTO> GetNotByCollaborateur(Guid? idAuteur, Guid? idCollaborateur);
public bool AjouterNote(DetailsNoteDTO nouvelleNote);
public bool SupprimerNote(int? idNote);
public void UpdateNote(int? idNote, DetailsNoteDTO note);
}
}