Esempio n. 1
0
 public PaymentCashCollection FetchAll()
 {
     PaymentCashCollection coll = new PaymentCashCollection();
     Query qry = new Query(PaymentCash.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Esempio n. 2
0
 public PaymentCashCollection FetchByQuery(Query qry)
 {
     PaymentCashCollection coll = new PaymentCashCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Esempio n. 3
0
 public PaymentCashCollection FetchByID(object Id)
 {
     PaymentCashCollection coll = new PaymentCashCollection().Where("ID", Id).Load();
     return coll;
 }