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