static void Main(string[] args) { PizzaStore nyPizzaStore = new NYPizzaStore(); nyPizzaStore.OrderPizza("cheese"); nyPizzaStore.OrderPizza("clam"); nyPizzaStore.OrderPizza("pepperoni"); Console.ReadLine(); }
static void Main(string[] args) { PizzaStore nyStore = new NYPizzaStore(); PizzaStore chicagoStore = new ChicagoPizzaStore(); Pizza pizza = nyStore.OrderPizza("cheese"); Console.WriteLine("Ethan ordered a " + pizza.GetName() + "\n"); pizza = chicagoStore.OrderPizza("cheese"); Console.WriteLine("Jole ordered a " + pizza.GetName() + "\n"); Console.Read(); }
static void Main(string[] args) { PizzaStore ps = new NYPizzaStore(); ps.orderPizza("spice"); }