Exemplo n.º 1
0
 static void Main(string[] args)
 {
     PizzaStore store = new PortlandPizzaStore();
     store.OrderPizza("Cheese");
     store = new HillsboroPizzaStore();
     store.OrderPizza("Clam");
 }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            PizzaStore store = new PortlandPizzaStore();

            store.OrderPizza("Cheese");
            store = new HillsboroPizzaStore();
            store.OrderPizza("Clam");
        }