public IActionResult Pay([FromRoute] int id, [FromBody] PaymentCreateDTO payment) { _hotelService.CreatePayment(id, payment); return(NoContent()); }