static void Main(string[] args)
        {
            var dressClothesFactory = new DressClothesFactory();
            ShowWhatAmIWearingToday(dressClothesFactory);

            Console.WriteLine("");

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

            Console.ReadKey();
        }
        static void Main(string[] args)
        {
            var dressClothesFactory = new DressClothesFactory();

            ShowWhatAmIWearingToday(dressClothesFactory);

            Console.WriteLine("");

            var casualClothesFactory = new CasualClothesFactory();

            ShowWhatAmIWearingToday(casualClothesFactory);

            Console.ReadKey();
        }