private void RemplirCodeRegroupement(int iduserconnect)
 {
     try
     {
         Galatee.Silverlight.ServiceRecouvrement.RecouvrementServiceClient service = new Galatee.Silverlight.ServiceRecouvrement.RecouvrementServiceClient(Utility.ProtocoleFacturation(), Utility.EndPoint("Recouvrement"));
         service.RetourneRegroupementGestionnairesCompleted += (s, args) =>
         {
             if (args != null && args.Cancelled)
             {
                 return;
             }
             LstCodeRegroupement = args.Result;
             if (LstCodeRegroupement != null)
             {
                 cbo_regroupement.DisplayMemberPath = "NOM";
                 cbo_regroupement.SelectedValuePath = "CODE";
                 cbo_regroupement.ItemsSource       = LstCodeRegroupement;
             }
             return;
         };
         service.RetourneRegroupementGestionnairesAsync(iduserconnect);
         //}
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }