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

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

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

            return(coll);
        }