Пример #1
0
 public Pizza(string name, Dough dough)
 {
     this.Name     = name;
     this.Dough    = dough;
     this.Toppings = new List <Topping>();
 }