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); }
public SysGroupUserCollection FetchByID(object BranchID) { SysGroupUserCollection coll = new SysGroupUserCollection().Where("BranchID", BranchID).Load(); return(coll); }