Пример #1
0
        public void ShowAccountInformation()
        {
            var currentAccount = model.GetByUserName(Program.currentLoggedInYyAccount.Username);

            if (currentAccount == null)
            {
                Console.WriteLine();
            }

            Console.WriteLine("Số tài khoản: ");
            Console.WriteLine(Program.currentLoggedInYyAccount.AccountNumber);
            Console.WriteLine("Số dư hiện tại: ");
            Console.WriteLine(Program.currentLoggedInYyAccount.Balance);
        }