public void AddDough(string type, string model, double weight)
 {
     this.Dough = new Dough(type, model, weight);
 }
예제 #2
0
 public Pizza(string name, Dough dough)
 {
     this.Name     = name;
     this.dough    = dough;
     this.toppings = new List <Topping>();
 }