Ejemplo n.º 1
0
 // Enregistre le client id dans la BDD
 internal bool SaveClient(Client c)
 {
     try
     {
         DClient.Add(c);
         SaveChanges();
     }
     catch (Exception)
     {
         return(false);
     }
     return(true);
 }