using EPAServeur.Context; 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 EpInformationService : IEpInformationService { private EpContext context; private ICollaborateurService collaborateurService; public EpInformationService(EpContext context, ICollaborateurService collaborateurService) { this.context = context; this.collaborateurService = collaborateurService; } public async Task> GetEPEnCours(List idBUs, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin) { throw new NotImplementedException(); } public async Task> GetEPEnCoursCollaborateurParticipant(Guid? idCollaborateur) { throw new NotImplementedException(); } public async Task GetEPEnCoursCount(List idBUs, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin) { throw new NotImplementedException(); } public async Task> GetEPEnCoursReferent(Guid? idReferent, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin) { throw new NotImplementedException(); } public async Task GetEPEnCoursReferentCount(Guid? idReferent, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin) { throw new NotImplementedException(); } public async Task> GetEPSignes(List idBUs, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin) { throw new NotImplementedException(); } public async Task> GetEPSignesCollaborateur(Guid? idCollaborateur) { throw new NotImplementedException(); } public async Task GetEPSignesCount(List idBUs, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin) { throw new NotImplementedException(); } public async Task> GetEPSignesReferent(Guid? idReferent, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin) { throw new NotImplementedException(); } public async Task GetEPSignesReferentCount(Guid? idReferent, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin) { throw new NotImplementedException(); } public async Task GetProchainEPCollaborateur(Guid? idCollaborateur) { throw new NotImplementedException(); } } }