Example #1
0
        public void Run()
        {
            Console.WriteLine("\n------------------Abstract Factory Pattern------------------");
            ComputerFactory factory = new ConcreteComputerFactory();

            new ComputerAssembler().AssembleComputer(factory);
        }
        public void Run() {
            Console.WriteLine("\n------------------Abstract Factory Pattern------------------");
            ComputerFactory factory = new ConcreteComputerFactory();

            new ComputerAssembler().AssembleComputer(factory);
        }