Exemplo n.º 1
0
 public static void printInfo(Coffee c)
 {
     Debug.WriteLine("Cost: " + c.getCost() + "; Ingredients: " + c.getIngredients());
 }
Exemplo n.º 2
0
 public override double getCost()
 { // Implementing methods of the interface
     return(decoratedCoffee.getCost());
 }