コード例 #1
0
ファイル: Program.cs プロジェクト: GoranGit/High-Quality-Code
        static void Main(string[] args)
        {
            Facade facade = new Facade();

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

            facade.ListAllConstructedBuildings();

            Console.ReadKey();
        }