예제 #1
0
        static void Main(string[] args)
        {
            //Win7安装
            WebmasterDirector master = new WebmasterDirector(new Win7SystemInstallBuilder());
            master.InstallSystem();

            Console.WriteLine("----------------------------");

            //Red Hat安装
            master = new WebmasterDirector(new RedHatSystemInstallBuilder());
            master.InstallSystem();


            Console.ReadLine();
        }
예제 #2
0
        static void Main(string[] args)
        {
            //Win7安装
            WebmasterDirector master = new WebmasterDirector(new Win7SystemInstallBuilder());

            master.InstallSystem();

            Console.WriteLine("----------------------------");

            //Red Hat安装
            master = new WebmasterDirector(new RedHatSystemInstallBuilder());
            master.InstallSystem();


            Console.ReadLine();
        }