コード例 #1
0
ファイル: HotelRoomServices.cs プロジェクト: gulelat/pxhotel
 public ResponseModel Delete(HotelCustomer hotelCustomer)
 {
     return _hotelCustomerRepository.Delete(hotelCustomer);
 }
コード例 #2
0
ファイル: HotelRoomServices.cs プロジェクト: gulelat/pxhotel
 public ResponseModel Insert(HotelCustomer hotelCustomer)
 {
     return _hotelCustomerRepository.Insert(hotelCustomer);
 }
コード例 #3
0
ファイル: HotelRoomServices.cs プロジェクト: gulelat/pxhotel
 public ResponseModel Update(HotelCustomer hotelCustomer)
 {
     return _hotelCustomerRepository.Update(hotelCustomer);
 }