Beispiel #1
0
 public CategorieProduit(string nom, FamilleProduit famille)
 {
     Id      = -1;
     Nom     = nom;
     Famille = famille;
 }
Beispiel #2
0
 public CategorieProduit(int id, string nom, FamilleProduit famille)
 {
     Id      = id;
     Nom     = nom;
     Famille = famille;
 }