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