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