static void Main(string[] args) { PizzaStore store = new ChicagoPizzaStore(); Pizza pizza = store.orderPizza("cheese"); pizza.Debug(); store = new NYPizzaStore(); pizza = store.orderPizza("cheese"); pizza.Debug(); }
static void Main(string[] args) { PizzaStore nyStore = new NYPizzaStore(); PizzaStore chicagoStore = new ChicagoPizzaStore(); var pizza = nyStore.orderPizza("cheese"); Console.WriteLine("Luis order a " + pizza.getName() + "\n"); pizza = chicagoStore.orderPizza("cheese"); Console.WriteLine("Jorge order a " + pizza.getName() + "\n"); }