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.
21 lines
563 B
21 lines
563 B
using IO.Swagger.DTO;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EPAServeur.IServices
|
|
{
|
|
public interface IEpDetailsService
|
|
{
|
|
void SupprimerDonneesEPCollaborateur(Guid? idCollaborateur);
|
|
Task<EpDTO> GetEp(long? id);
|
|
Task<EpDTO> UpdateEP(long? idEp, EpDTO ep);
|
|
void SupprimerEP(long? idEp);
|
|
void RappelSignature(long? idEp);
|
|
Task<EpDTO> UpdateSaisie(long? idEp, EpDTO ep);
|
|
Task<EpDTO> SaisirEPCollaborateur(Guid? idCollaborateur);
|
|
Task<EpDTO> SaisirEPReferent(long? idEp);
|
|
|
|
}
|
|
}
|
|
|