예제 #1
0
 public PaymentTimingTypeCollection FetchAll()
 {
     PaymentTimingTypeCollection coll = new PaymentTimingTypeCollection();
     Query qry = new Query(PaymentTimingType.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
예제 #2
0
 public PaymentTimingTypeCollection FetchByQuery(Query qry)
 {
     PaymentTimingTypeCollection coll = new PaymentTimingTypeCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }