예제 #1
0
 public SysDelegateUserCollection FetchAll()
 {
     SysDelegateUserCollection coll = new SysDelegateUserCollection();
     Query qry = new Query(SysDelegateUser.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
예제 #2
0
 public SysDelegateUserCollection FetchByQuery(Query qry)
 {
     SysDelegateUserCollection coll = new SysDelegateUserCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
예제 #3
0
 public SysDelegateUserCollection FetchByID(object Id)
 {
     SysDelegateUserCollection coll = new SysDelegateUserCollection().Where("ID", Id).Load();
     return coll;
 }