Пример #1
0
        public JsonResult GetConfigAlert(string ACCION)
        {
            List <Entidad.GetAlerta> data = new List <Entidad.GetAlerta>();

            Entidad.GetAlertaQueryInput parametros = new Entidad.GetAlertaQueryInput();
            parametros.ACCION  = ACCION;
            parametros.OPEPORT = ConfigurationManager.AppSettings["OPEPORT"];
            data = lgCita.GetAlerta(parametros);
            return(Json(data));
        }
Пример #2
0
        public List <Entidad.GetAlerta> GetAlerta(Entidad.GetAlertaQueryInput Parametros)
        {
            dtResultado = DB2Helper.ExecuteDb2Query(CommandType.StoredProcedure, "SP_JNTAOPE_SEL_ALERTA", Parametros);

            return(dtResultado.ToList <Entidad.GetAlerta>());
        }
Пример #3
0
 public List <Entidad.GetAlerta> GetAlerta(Entidad.GetAlertaQueryInput Parametros)
 {
     return(ejecuta.GetAlerta(Parametros));
 }