|
|
|
@ -0,0 +1,53 @@ |
|
|
|
|
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<EpDTO> GetEp(long id) |
|
|
|
|
{ |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void RappelSignature(long idEp) |
|
|
|
|
{ |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Task<EpDTO> SaisirEPCollaborateur(Guid? idCollaborateur) |
|
|
|
|
{ |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Task<EpDTO> SaisirEPReferent(long idEp) |
|
|
|
|
{ |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void SupprimerDonneesEPCollaborateur(Guid? idCollaborateur) |
|
|
|
|
{ |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void SupprimerEP(long idEp) |
|
|
|
|
{ |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Task<EpDTO> UpdateEP(long idEp, EpDTO ep) |
|
|
|
|
{ |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Task<EpDTO> UpdateSaisie(long idEp, EpDTO ep) |
|
|
|
|
{ |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |