public virtual string GetIngredients()
 {
     return(_iCoffee.GetIngredients());
 }
Exemple #2
0
 public static void Print(ICoffee iCoffee)
 {
     Console.WriteLine(String.Format("Cost: {0:N2}; Ingredients: {1}", iCoffee.GetCost(), iCoffee.GetIngredients()));
 }
 public virtual string GetIngredients()
 {
     return(_decoratedCoffee.GetIngredients());
 }