From 25bd7a4a698d8ed43d8f650aa9463051adf09381 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yana=C3=ABl=20GRETTE?= Date: Fri, 19 Feb 2021 16:06:39 +0100 Subject: [PATCH] =?UTF-8?q?Cr=C3=A9ation=20du=20service=20EpInformationSer?= =?UTF-8?q?vice=20sans=20impl=C3=A9mentation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EPAServeur/IServices/IEpInformationService.cs | 35 ++++++++++ EPAServeur/Services/EpInformationService.cs | 67 +++++++++++++++++++ 2 files changed, 102 insertions(+) create mode 100644 EPAServeur/IServices/IEpInformationService.cs create mode 100644 EPAServeur/Services/EpInformationService.cs diff --git a/EPAServeur/IServices/IEpInformationService.cs b/EPAServeur/IServices/IEpInformationService.cs new file mode 100644 index 0000000..e7d10ac --- /dev/null +++ b/EPAServeur/IServices/IEpInformationService.cs @@ -0,0 +1,35 @@ +using IO.Swagger.DTO; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace EPAServeur.IServices +{ + interface IEpAffichageService + { + Task> GetEPEnCours(List idBUs, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin); + Task> GetEPEnCoursCount(List idBUs, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin); + + Task> GetEPEnCoursCollaborateurParticipant(Guid? idCollaborateur); + + Task> GetEPEnCoursReferent(Guid? idReferent, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin); + + Task> GetEPEnCoursReferentCount(Guid? idReferent, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin); + + Task> GetEPSignes(List idBUs, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin); + + Task> GetEPSignesCount(List idBUs, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin); + + Task> GetEPSignesCollaborateur(Guid? idCollaborateur); + + Task> GetEPSignesReferent(Guid? idReferent, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin); + + Task> GetEPSignesReferentCount(Guid? idReferent, bool asc, int? numPage, int? parPage, string texte, string tri, DateTime? dateDebut, DateTime? dateFin); + + Task GetProchainEPCollaborateur(Guid? idCollaborateur); + + + + } +} diff --git a/EPAServeur/Services/EpInformationService.cs b/EPAServeur/Services/EpInformationService.cs new file mode 100644 index 0000000..c75f2ec --- /dev/null +++ b/EPAServeur/Services/EpInformationService.cs @@ -0,0 +1,67 @@ +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 + { + 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(); + } + } +}