コード例 #1
0
 public RegionCodeTaxRateCollection FetchAll()
 {
     RegionCodeTaxRateCollection coll = new RegionCodeTaxRateCollection();
     Query qry = new Query(RegionCodeTaxRate.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
 public RegionCodeTaxRateCollection FetchByQuery(Query qry)
 {
     RegionCodeTaxRateCollection coll = new RegionCodeTaxRateCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #3
0
 public RegionCodeTaxRateCollection FetchByID(object RegionCodeTaxRateId)
 {
     RegionCodeTaxRateCollection coll = new RegionCodeTaxRateCollection().Where("RegionCodeTaxRateId", RegionCodeTaxRateId).Load();
     return coll;
 }