Пример #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);
        }