예제 #1
0
        static void Main(string[] args)
        {
            var HUEpizzaStore = new HUEPizzaStore();

            HUEpizzaStore.OrderPizza("chesse");
            var BLpizzaStore = new BLPizzaStore();

            BLpizzaStore.OrderPizza("chesse");
        }
예제 #2
0
        static void Main(string[] args)
        {
            var huePizzaStore = new HUEPizzaStore();

            huePizzaStore.OrderPizza("cheese");
            //var dnPizzaStore = new DNPizzaStore();
            //dnPizzaStore.OrderPizza("cheese");
            //var hcmPizzaStore = new HCMPizzaStore();
            //hcmPizzaStore.OrderPizza("cheese");


            Console.ReadLine();
        }
예제 #3
0
        static void Main(string[] args)
        {
            PizzaStore pizzaStore;

            pizzaStore = new HUEPizzaStore();
            pizzaStore.OrderPizza("cheese");

            pizzaStore = new DNPizzaStore();
            pizzaStore.OrderPizza("cheese");

            pizzaStore = new HCMPizzaStore();
            pizzaStore.OrderPizza("cheese");
        }