public ActionResult GetById(int id) { try { return(Ok(livroService.ConsultarLivro(id))); } catch (Exception ex) { return(BadRequest(ex.Message)); } }