Exemple #1
0
        public List <ListItem> GetAllUsuariosAnexos(string key)
        {
            List <ListItem> Empresas = null;

            if (!Class.Seguridad.keyCorrecta(key))
            {
                return(Empresas);
            }
            Class.catalogos.Catalogos Cat = new Class.catalogos.Catalogos();
            return(Cat.GetAllUsuariosAnexos());
        }
Exemple #2
0
        public List <ListItem> GetDesarrolladorKrio(string key)
        {
            List <ListItem> Empresas = null;

            if (!Class.Seguridad.keyCorrecta(key))
            {
                return(Empresas);
            }
            Class.catalogos.Catalogos Cat = new Class.catalogos.Catalogos();
            return(Cat.GetDesarrolladorKrio());
        }
Exemple #3
0
        public List <ListItem> GetEnlace(int idEmpresa, string key)
        {
            List <ListItem> Empresas = null;

            if (!Class.Seguridad.keyCorrecta(key))
            {
                return(Empresas);
            }
            Class.catalogos.Catalogos Cat = new Class.catalogos.Catalogos();
            return(Cat.GetEnlace(idEmpresa));
        }
Exemple #4
0
        public List <ListItem> GetEmpresa(string key)
        {
            List <ListItem> Empresas = null;

            if (!Class.Seguridad.keyCorrecta(key))
            {
                return(Empresas);
            }
            Class.catalogos.Catalogos Cat = new Class.catalogos.Catalogos();
            Empresas = Cat.GetEmpresa();
            return(Empresas);
        }
Exemple #5
0
        public List <ListItem> GetSistemaByEmpresa(int idEmpresa, string key)
        {
            List <ListItem> Empresas = null;

            if (!Class.Seguridad.keyCorrecta(key))
            {
                return(Empresas);
            }
            Class.catalogos.Catalogos Cat     = new Class.catalogos.Catalogos();
            List <ListItem>           Sistema = Cat.GetSistema(idEmpresa);

            return(Sistema);
        }