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