Beispiel #1
0
 /** View booking history. */
 private void viewBookingHistory() {
   System.out.println(LINE_SPACING);
   ArrayList<Booking> bookingHistory = new ArrayList<Booking>();
   bookingHistory = bookingController.getBookingHistory();
   System.out.println("Your booking history: ");
   for (int i = 0; i < bookingHistory.size(); i++) {
     bookingHistory.get(i).print();
   }
 }