Example #1
0
        public List <Booking> GetBookingsByCustomer(Customer customer)
        {
            List <Booking> bookings = Rentals.GetBookingsByCustomer(customer);

            return(bookings);
        }