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