Example #1
0
 public PaymentRateCollection FetchAll()
 {
     PaymentRateCollection coll = new PaymentRateCollection();
     Query qry = new Query(PaymentRate.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Example #2
0
 public PaymentRateCollection FetchByQuery(Query qry)
 {
     PaymentRateCollection coll = new PaymentRateCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Example #3
0
 public PaymentRateCollection FetchByID(object PaymentRateID)
 {
     PaymentRateCollection coll = new PaymentRateCollection().Where("PaymentRateID", PaymentRateID).Load();
     return coll;
 }