public Jouet(int pCode, string pLibelle, Categorie uneCategorie, TrancheAge uneTranche) { numero = pCode; libelle = pLibelle; laCategorie = uneCategorie; laTranche = uneTranche; }
public Jouet(int pCode, string pLibelle) { numero = pCode; libelle = pLibelle; laCategorie = null; laTranche = null; }