public SysNivelInstruccionCollection FetchByQuery(Query qry) { SysNivelInstruccionCollection coll = new SysNivelInstruccionCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public SysNivelInstruccionCollection FetchAll() { SysNivelInstruccionCollection coll = new SysNivelInstruccionCollection(); Query qry = new Query(SysNivelInstruccion.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }