private void MiseAJoursDetailCampagne(List <CsDetailCampagnePrecontentieux> Detail)
 {
     try
     {
         RecouvrementServiceClient client = new RecouvrementServiceClient(Utility.ProtocoleIndex(), Utility.EndPoint("Recouvrement"));
         client.MajDetailPrecontentieuxCompleted += (ss, ress) =>
         {
             try
             {
                 if (ress.Cancelled || ress.Error != null)
                 {
                     Message.ShowError("Erreur survenue lors de l'appel service", "Informations");
                     return;
                 }
             }
             catch (Exception ex)
             {
                 Message.ShowError(ex, "Erreur");
             }
         };
         client.MajDetailPrecontentieuxAsync(Detail);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }