public PizzaFacade(string sauce, string topping, string cheese) { this.dough = new Dough(); this.sauce = new Sauce(sauce); this.topping = new Topping(topping); this.cheese = new Cheese(cheese); this.oven = new Oven(); }
public void AddSauce(Sauce sauce) { }