示例#1
0
 public Jouet(int pCode, string pLibelle, Categorie uneCategorie, TrancheAge uneTranche)
 {
     numero      = pCode;
     libelle     = pLibelle;
     laCategorie = uneCategorie;
     laTranche   = uneTranche;
 }
示例#2
0
 public Jouet(int pCode, string pLibelle)
 {
     numero      = pCode;
     libelle     = pLibelle;
     laCategorie = null;
     laTranche   = null;
 }