Exemple #1
0
        public SysNivelInstruccionCollection FetchByQuery(Query qry)
        {
            SysNivelInstruccionCollection coll = new SysNivelInstruccionCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #2
0
        public SysNivelInstruccionCollection FetchAll()
        {
            SysNivelInstruccionCollection coll = new SysNivelInstruccionCollection();
            Query qry = new Query(SysNivelInstruccion.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #3
0
        public SysNivelInstruccionCollection FetchByID(object IdNivelInstruccion)
        {
            SysNivelInstruccionCollection coll = new SysNivelInstruccionCollection().Where("idNivelInstruccion", IdNivelInstruccion).Load();

            return(coll);
        }