Exemplo n.º 1
0
 public IHttpActionResult Put([FromUri] int id, [FromBody] SupplementRoomBookingDTO SupplementRoomBooking)
 {
     SupplementRoomBookingService.PrePutDTO(ModelState, currentClient, id, SupplementRoomBooking);
     return(Ok());
 }
Exemplo n.º 2
0
 public SupplementRoomBookingDTO Post([FromBody] SupplementRoomBookingDTO SupplementRoomBooking)
 {
     return(SupplementRoomBookingService.PrePostDTO(ModelState, currentClient, SupplementRoomBooking));
 }