Esempio n. 1
0
 public void DeleteCustomer(string name, string address)
 {
     _bookingHandler.DeleteBooking(name, address); //remove bookings attached to the customer.
     _customerHandler.DeleteCustomer(name, address);
 }
Esempio n. 2
0
 public bool DeleteCustomer(int customerId)
 {
     return(_customerHandler.DeleteCustomer(customerId));
 }