Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            var dressClothesFactory = new DressClothesFactory();
            ShowWhatAmIWearingToday(dressClothesFactory);

            Console.WriteLine("");

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

            Console.ReadKey();
        }