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