Exemplo n.º 1
0
        public async Task <IActionResult> ObtenerParametrosGeneralesXTipo([FromQuery(Name = "tipo")] string tipo)
        {
            var datos = await _repo.ObtenerParametrosGeneralesXTipo(tipo);

            return(Ok(datos));
        }