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