示例#1
0
 public SysGroupUserCollection FetchAll()
 {
     SysGroupUserCollection coll = new SysGroupUserCollection();
     Query qry = new Query(SysGroupUser.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
示例#2
0
 public SysGroupUserCollection FetchByQuery(Query qry)
 {
     SysGroupUserCollection coll = new SysGroupUserCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
示例#3
0
 public SysGroupUserCollection FetchByID(object BranchID)
 {
     SysGroupUserCollection coll = new SysGroupUserCollection().Where("BranchID", BranchID).Load();
     return coll;
 }