Ejemplo n.º 1
0
 public virtual String getIngredients()
 {
     return(decoratedCoffee.getIngredients());
 }
Ejemplo n.º 2
0
 public virtual string getIngredients()
 {
     return(_coffee.getIngredients());
 }
Ejemplo n.º 3
0
 public static void printCoffeeInfo(ICoffee c)
 {
     Console.WriteLine("Current Coffee: " + c.getCost() + ". Ingredients: " + c.getIngredients());
 }