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