public ATaxOrderCollection FetchByQuery(Query qry) { ATaxOrderCollection coll = new ATaxOrderCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public ATaxOrderCollection FetchAll() { ATaxOrderCollection coll = new ATaxOrderCollection(); Query qry = new Query(ATaxOrder.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public ATaxOrderCollection FetchByID(object OrdRecID) { ATaxOrderCollection coll = new ATaxOrderCollection().Where("OrdRecID", OrdRecID).Load(); return(coll); }