Пример #1
0
        public ActionResult <List <Exame> > GetAgrupamentosExame([FromHeader] string ibge, [FromRoute] int id_exame)
        {
            try
            {
                ibge = _config.GetConnectionString(Connection.GetConnection(ibge));
                List <AgrupamentoExames> agrupamentos = _repository.GetListAgrupamentosExames(ibge);

                return(Ok(agrupamentos));
            }
            catch (Exception ex)
            {
                var response = TrataErro.GetResponse(ex.Message, true);
                return(StatusCode((int)HttpStatusCode.InternalServerError, response));
            }
        }