Beispiel #1
0
 private void ListOfCustomers()
 {
     Console.Clear();
     Console.WriteLine("Lista klientów:");
     foreach (string customer in _accountsManager.ListOfCustomers())
     {
         Console.WriteLine(customer);
     }
     Console.ReadKey();
 }
Beispiel #2
0
 //Przypadek 6 - Wypisanie klientów banku
 private void GetAllCustomers()
 {
     Console.Clear();
     Console.WriteLine("Lista wszystkich klientów banku: ");
     foreach (string customer in _accountsManager.ListOfCustomers())
     {
         Console.WriteLine(customer);
     }
     Console.ReadKey();
 }