Exemplo n.º 1
0
 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();
 }
Exemplo n.º 2
0
 public void AddSauce(Sauce sauce)
 {
 }