Esempio n. 1
0
        public ATaxOrderCollection FetchByQuery(Query qry)
        {
            ATaxOrderCollection coll = new ATaxOrderCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 2
0
        public ATaxOrderCollection FetchAll()
        {
            ATaxOrderCollection coll = new ATaxOrderCollection();
            Query qry = new Query(ATaxOrder.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 3
0
        public ATaxOrderCollection FetchByID(object OrdRecID)
        {
            ATaxOrderCollection coll = new ATaxOrderCollection().Where("OrdRecID", OrdRecID).Load();

            return(coll);
        }