public static void printInfo(Coffee c) { Debug.WriteLine("Cost: " + c.getCost() + "; Ingredients: " + c.getIngredients()); }
public WithMilk(Coffee c) : base(c) { //super(c); }
public WithSprinkles(Coffee c) : base(c) { //super(c); }
public CoffeeDecorator(Coffee c) { this.decoratedCoffee = c; }