Exemplo n.º 1
0
        static void Main(string[] args)
        {
            PizzaStore nyPizzaStore = new NYPizzaStore();
            Pizza      pizza        = nyPizzaStore.orderPizza("cheese");

            Console.ReadLine();
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            var nyStore = new NYPizzaStore();

            var pizza = nyStore.orderPizza("cheese");

            Console.WriteLine($"Ethan ordered a {pizza.getName()}");
        }