コード例 #1
0
ファイル: Program.cs プロジェクト: quangkhaivnt/HelloBanking
        static void Main(string[] args)
        {
            ApplicationView view = new ApplicationView();

            while (true)
            {
                if (Program.currentLoggedInAccount != null)
                {
                    view.GenerateCustomerMenu();
                }
                else
                {
                    view.GeneraDefaultMenu();
                }
            }
        }