public Chocolat(Ingredient ingredientQueJeDecore) : base(ingredientQueJeDecore)
 {
     Description = "Chocolat";
     Prix = 0.15;
 }
Esempio n. 2
0
 public Sucre(Ingredient ingredientQueJeDecore) : base(ingredientQueJeDecore)
 {
     Description = "Sucre";
     Prix = 0.05;
 }
Esempio n. 3
0
 public Sucre(Ingredient boisson) : base(boisson)
 {
     Prix = 0.05;
 }
Esempio n. 4
0
 public IngredientSup(Ingredient boisson)
 {
     BoissonDecore = boisson;
 }
Esempio n. 5
0
 public Creme(Ingredient boisson) : base(boisson){
     Prix = 0.20;
 }
 public Expresso(Ingredient ingredientQueJeDecore) : base (ingredientQueJeDecore)
 {
     this.Description = "Expresso";
     this.Prix = 0.40;
 }
Esempio n. 7
0
 public Chocolat(Ingredient boisson) : base(boisson)
 {
     Prix = 0.15;
 }
Esempio n. 8
0
 public The(Ingredient ingredientQueJeDecore) : base(ingredientQueJeDecore)
 {
     this.Description = "The";
     this.Prix = 0.20;
 }
Esempio n. 9
0
 public Creme(Ingredient ingredientQueJeDecore) : base(ingredientQueJeDecore)
 {
     Description = "Creme";
     Prix = 0.20;
 }
 public IngredientBoisson(Ingredient ingredientAuquelJemAjoute)
 {
     IngredientDecore = ingredientAuquelJemAjoute;
 }