Exemplo n.º 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());
        }
Exemplo n.º 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());
        }
Exemplo n.º 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));
        }
Exemplo n.º 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);
        }
Exemplo n.º 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);
        }