Esempio n. 1
0
        static void Main(string[] args)
        {
            Facade facade = new Facade();

            facade.ConstructCompanyWithPyramidalRoof();
            facade.ConstructMall();
            facade.ConstructSchoolWithFlatRoof();

            facade.ListAllConstructedBuildings();

            Console.ReadKey();
        }