コード例 #1
0
 public KcbPhieuDctCollection FetchAll()
 {
     KcbPhieuDctCollection coll = new KcbPhieuDctCollection();
     Query qry = new Query(KcbPhieuDct.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
 public KcbPhieuDctCollection FetchByQuery(Query qry)
 {
     KcbPhieuDctCollection coll = new KcbPhieuDctCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #3
0
 public KcbPhieuDctCollection FetchByID(object IdPhieuDct)
 {
     KcbPhieuDctCollection coll = new KcbPhieuDctCollection().Where("id_phieu_dct", IdPhieuDct).Load();
     return coll;
 }