static void Main(string[] args) { PizzaStore nyPizzaStore = new NYPizzaStore(); Pizza pizza = nyPizzaStore.orderPizza("cheese"); Console.ReadLine(); }
static void Main(string[] args) { var nyStore = new NYPizzaStore(); var pizza = nyStore.orderPizza("cheese"); Console.WriteLine($"Ethan ordered a {pizza.getName()}"); }