function GETActivos() { $_prop['ACTIVO']['VALUE']=1; $sqlHelper = new gODataManager($this->_condb); $rs = $sqlHelper->spExecuteCursor($this->_entidad_base, $_prop,'GETACTIVOS'); return $rs; }
function GETbyUsuario($Usuario) { $_prop['USUARIO']['VALUE']=$Usuario; $sqlHelper = new gODataManager($this->_condb); $rs = $sqlHelper->spExecuteCursor($this->_entidad_base, $_prop,'GETbyNombre'); return $rs; }
function GETbyIDRaiz($Id) { $_prop['ID']['VALUE']=$Id; $sqlHelper = new gODataManager($this->_condb); $rs = $sqlHelper->spExecuteCursor($this->_entidad_base, $_prop,'GETbyIDRaiz'); return $rs; }