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