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