コード例 #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();
 }
コード例 #2
0
ファイル: Dough.cs プロジェクト: DylanFD91/Potential-Fiesta
 public void AddSauce(Sauce sauce)
 {
 }