public IActionResult GetLivros() { try { var retorno = ItemAppService.ObterLivros(); if (retorno.Count() > 0) { return(Ok(retorno)); } else { return(NotFound()); } } catch (Exception ex) { return(BadRequest(ex.Message)); } }