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