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

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

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