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

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