public ActionResult <Orgao> Get(int id) { var Orgao = _orgaoRepository.Pesquisar(id); if (Orgao == null) { return(NotFound()); } return(Orgao); }