using EPAServeur.IServices; using IO.Swagger.DTO; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Services { public class EpDetailsService : IEpDetailsService { public Task GetEp(long id) { throw new NotImplementedException(); } public void RappelSignature(long idEp) { throw new NotImplementedException(); } public Task SaisirEPCollaborateur(Guid? idCollaborateur) { throw new NotImplementedException(); } public Task SaisirEPReferent(long idEp) { throw new NotImplementedException(); } public void SupprimerDonneesEPCollaborateur(Guid? idCollaborateur) { throw new NotImplementedException(); } public void SupprimerEP(long idEp) { throw new NotImplementedException(); } public Task UpdateEP(long idEp, EpDTO ep) { throw new NotImplementedException(); } public Task UpdateSaisie(long idEp, EpDTO ep) { throw new NotImplementedException(); } } }