예제 #1
0
        public PaymentHistoryCollection FetchByQuery(Query qry)
        {
            PaymentHistoryCollection coll = new PaymentHistoryCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #2
0
        public PaymentHistoryCollection FetchAll()
        {
            PaymentHistoryCollection coll = new PaymentHistoryCollection();
            Query qry = new Query(PaymentHistory.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }