public ActionResult <Reserva> Get(string id) { var peca = _dbService.Get(id); if (peca == null) { return(NotFound()); } return(peca); }