Example #1
0
 public ResponseModel Delete(HotelCustomer hotelCustomer)
 {
     return _hotelCustomerRepository.Delete(hotelCustomer);
 }
Example #2
0
 public ResponseModel Insert(HotelCustomer hotelCustomer)
 {
     return _hotelCustomerRepository.Insert(hotelCustomer);
 }
Example #3
0
 public ResponseModel Update(HotelCustomer hotelCustomer)
 {
     return _hotelCustomerRepository.Update(hotelCustomer);
 }