public DataView getListaGrupos() { clsGrupo Grupo = new clsGrupo(); DataView dv = Grupo.getExtendedLista().DefaultView; Grupo = null; return(dv); }
public DataView getListaGrupos() { try { clsGrupo Grupo = new clsGrupo(); DataView dvGrupos = Grupo.getExtendedLista().DefaultView; Grupo = null; return(dvGrupos); } catch (System.Exception Ex) { throw new System.Exception("Imposible recuperar la lista de los grupos.", Ex); } }