public ActionResult <List <Cid> > GetCids([FromHeader] string ibge) { try { ibge = _config.GetConnectionString(Connection.GetConnection(ibge)); List <Cid> lista = _repository.GetCid(ibge); return(Ok(lista)); } catch (Exception ex) { var response = TrataErro.GetResponse(ex.Message, true); return(StatusCode((int)HttpStatusCode.InternalServerError, response)); } }