Ejemplo n.º 1
0
 public ResponseModel Delete(HotelCustomer hotelCustomer)
 {
     return _hotelCustomerRepository.Delete(hotelCustomer);
 }
Ejemplo n.º 2
0
 public ResponseModel Insert(HotelCustomer hotelCustomer)
 {
     return _hotelCustomerRepository.Insert(hotelCustomer);
 }
Ejemplo n.º 3
0
 public ResponseModel Update(HotelCustomer hotelCustomer)
 {
     return _hotelCustomerRepository.Update(hotelCustomer);
 }