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