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