Пример #1
0
 public PaymentScheduleCollection FetchAll()
 {
     PaymentScheduleCollection coll = new PaymentScheduleCollection();
     Query qry = new Query(PaymentSchedule.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Пример #2
0
 public PaymentScheduleCollection FetchByQuery(Query qry)
 {
     PaymentScheduleCollection coll = new PaymentScheduleCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Пример #3
0
 public PaymentScheduleCollection FetchByID(object PaymentScheduleKey)
 {
     PaymentScheduleCollection coll = new PaymentScheduleCollection().Where("payment_schedule_key", PaymentScheduleKey).Load();
     return coll;
 }