From 92a68a26ccddea12187caf7890506acadf249385 Mon Sep 17 00:00:00 2001 From: jboinembalome Date: Thu, 11 Feb 2021 15:55:44 +0100 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20des=20signatures=20de=20?= =?UTF-8?q?l'interface?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EPAServeur/IServices/IEngagementService.cs | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/EPAServeur/IServices/IEngagementService.cs b/EPAServeur/IServices/IEngagementService.cs index bc94629..3d22f92 100644 --- a/EPAServeur/IServices/IEngagementService.cs +++ b/EPAServeur/IServices/IEngagementService.cs @@ -1,5 +1,6 @@ using EPAServeur.Context; using IO.Swagger.DTO; +using IO.Swagger.Enum; using IO.Swagger.ModelCollaborateur; using System; using System.Collections.Generic; @@ -10,16 +11,8 @@ namespace EPAServeur.IServices { public interface IEngagementService { - - IEnumerable GetEngagements(bool? asc, int? numPage, int? parPAge, string texte, string tri); - Task> GetEngagementsAsync(bool? asc, int? numPage, int? parPAge, string texte, string tri); - IEnumerable GetEngagementsEnAttente(bool? asc, int? numPage, int? parPAge, string texte, string tri); - Task> GetEngagementsEnAttenteAsync(bool? asc, int? numPage, int? parPAge, string texte, string tri); - IEnumerable GetEngagementsRepondus(bool? asc, int? numPage, int? parPAge, string texte, string tri); - Task> GetEngagementsRepondusAsync(bool? asc, int? numPage, int? parPAge, string texte, string tri); - - EngagementDTO RepondreEngagement(EngagementDTO engagement, long? idEngagement); - Task RepondreEngagementAsync(EngagementDTO engagement, long? idEngagement); - + Task> GetEngagementsAsync(List idBUs, List etatsEngagement, bool? asc, int? numPage, int? parPage, string texte, string tri); + Task GetEngagementsCountAsync(List idBUs, List etatsEngagement, bool? asc, int? numPage, int? parPage, string texte, string tri); + Task RepondreEngagementAsync(EngagementDTO engagement, long idEngagement); } }