public IActionResult Cancel([FromRoute] int id)
 {
     _hotelService.Cancel(id);
     return(NoContent());
 }