public Pizza(string name, Dough dough) { this.Name = name; this.Dough = dough; this.Toppings = new List <Topping>(); }