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.
26 lines
1.2 KiB
26 lines
1.2 KiB
using EPAServeur.Context;
|
|
using IO.Swagger.DTO;
|
|
using IO.Swagger.ModelCollaborateur;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection.Metadata;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EPAServeur.IServices
|
|
{
|
|
public interface ICollaborateurService
|
|
{
|
|
Task<CollaborateurDTO> GetCollaborateurByIdAsync(Guid? id);
|
|
Task<CollaborateurDTO> GetCollaborateurByMailAsync(string mail);
|
|
Task<IEnumerable<CollaborateurDTO>> GetCollaborateursAsync(List<string> roles, List<long?> idBUs, bool? asc, int? numPage, int? parPAge, string texte, string tri, DateTime? dateDebut, DateTime? dateFin);
|
|
Task<int> GetCollaborateursCountAsync(List<string> roles, List<long?> idBUs, string texte, DateTime? dateDebut, DateTime? dateFin);
|
|
Task<IEnumerable<CollaborateurDTO>> GetCollaborateursByReferentAsync(Guid? idReferent, bool? asc, int? numPage, int? parPage, string texte, string tri);
|
|
Task<int> GetCollaborateursCountByReferentAsync(Guid? idReferent, string texte);
|
|
Task<IEnumerable<CollaborateurDTO>> GetReferentsPrecedentsEPAsync(Guid? idCollaborateur);
|
|
Task<IEnumerable<CollaborateurDTO>> GetCollaborateurDTOsAsync(List<Guid?> guids);
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|