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()); }
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()); }
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)); }
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); }
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); }