Exemplo n.º 1
0
        public UpdateRecurringCollection FetchByQuery(Query qry)
        {
            UpdateRecurringCollection coll = new UpdateRecurringCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public UpdateRecurringCollection FetchAll()
        {
            UpdateRecurringCollection coll = new UpdateRecurringCollection();
            Query qry = new Query(UpdateRecurring.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public UpdateRecurringCollection FetchByID(object ContinueX)
        {
            UpdateRecurringCollection coll = new UpdateRecurringCollection().Where("continue", ContinueX).Load();

            return(coll);
        }