コード例 #1
0
ファイル: Program.cs プロジェクト: rwpcpe/pattern-of-the-week
        static void Main(string[] args)
        {
            var dressClothesFactory = new DressClothesFactory();
            ShowWhatAmIWearingToday(dressClothesFactory);

            Console.WriteLine("");

            var casualClothesFactory = new CasualClothesFactory();
            ShowWhatAmIWearingToday(casualClothesFactory);

            Console.ReadKey();
        }