|
|
|
@ -1,4 +1,6 @@ |
|
|
|
|
using EPAServeur.Context; |
|
|
|
|
using EPAServeur.Models.EP; |
|
|
|
|
using EPAServeur.Models.Formation; |
|
|
|
|
using IO.Swagger.DTO; |
|
|
|
|
using IO.Swagger.ModelCollaborateur; |
|
|
|
|
using System; |
|
|
|
@ -19,7 +21,12 @@ namespace EPAServeur.IServices |
|
|
|
|
Task<int> GetCollaborateursCountByReferentAsync(Guid? idReferent, string texte); |
|
|
|
|
Task<IEnumerable<CollaborateurDTO>> GetReferentsPrecedentsEPAsync(Guid? idCollaborateur); |
|
|
|
|
Task<IEnumerable<CollaborateurDTO>> GetCollaborateurDTOsAsync(List<Guid?> guids); |
|
|
|
|
|
|
|
|
|
Task<IEnumerable<CollaborateurDTO>> GetCollaborateurDTOsAsync(List<ParticipationFormation> participationsFormation); |
|
|
|
|
Task<IEnumerable<CollaborateurDTO>> GetCollaborateurDTOsAsync(IEnumerable<ParticipationFormation> participationsFormation); |
|
|
|
|
Task<IEnumerable<CollaborateurDTO>> GetCollaborateurDTOsAsync(Engagement engagement); |
|
|
|
|
Task<IEnumerable<CollaborateurDTO>> GetCollaborateurDTOsAsync(IEnumerable<Engagement> engagements); |
|
|
|
|
Task<IEnumerable<CollaborateurDTO>> GetCollaborateurDTOsAsync(IEnumerable<Ep> eps); |
|
|
|
|
Task<CollaborateurDTO> GetCollaborateurDTOAsync(Collaborateur collaborateur, bool chercherReferent); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|