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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #3
0
        public RegionCodeTaxRateCollection FetchByID(object RegionCodeTaxRateId)
        {
            RegionCodeTaxRateCollection coll = new RegionCodeTaxRateCollection().Where("RegionCodeTaxRateId", RegionCodeTaxRateId).Load();

            return(coll);
        }