public Pizza(PizzaBase pizzaBase, string name) { this.Base = pizzaBase; this.Toppings = new List <PizzaTopping>(); this.Name = name; }