コード例 #1
0
ファイル: SysMemberMoveController.cs プロジェクト: eleooo/App
 public SysMemberMoveCollection FetchAll()
 {
     SysMemberMoveCollection coll = new SysMemberMoveCollection();
     Query qry = new Query(SysMemberMove.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
ファイル: SysMemberMoveController.cs プロジェクト: eleooo/App
 public SysMemberMoveCollection FetchByQuery(Query qry)
 {
     SysMemberMoveCollection coll = new SysMemberMoveCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }