@PostConstruct
public void postConstruct() {
allCustomers = new ArrayList<Customer>();
BookingService bookingService = getBookingService();
Customer customer = new Customer(ID_BRIAN_GREEN, "Brian", "Green");
customer.setBookings(bookingService.getBookingsByCustomerId(ID_BRIAN_GREEN));
allCustomers.add(customer);
customer = new Customer(ID_LIZ_KESSLER, "Liz", "Kessler");
customer.setBookings(bookingService.getBookingsByCustomerId(ID_LIZ_KESSLER));
allCustomers.add(customer);
customer = new Customer(ID_RICH_SHEARER, "Rich", "Shearer");
customer.setBookings(bookingService.getBookingsByCustomerId(ID_RICH_SHEARER));
allCustomers.add(customer);
}