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