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