Example #1
0
        public static void ShowAccountDetails(IBankcs bank)
        {
            Console.Write("Please enter the IBAN: ");
            int ibanNr = Convert.ToInt32(Console.ReadLine());

            bank.ShowDetailsAccount(ibanNr);
        }
Example #2
0
        private static void DeleteAccount(IBankcs bank)
        {
            Console.Write("Please enter the IBAN: ");
            int ibanNr = Convert.ToInt32(Console.ReadLine());

            for (int i = bank._ibanCount - 1; i >= 0; i--)
            {
            }
            Console.WriteLine();
            Console.WriteLine("********************************");
        }
Example #3
0
 private static void ShowAccountsBiggerSum(IBankcs bank)
 {
     bank.SortDes(bank);
     Show(bank, 3);
 }