Пример #1
0
 public DmLoaiDichVuCollection FetchAll()
 {
     DmLoaiDichVuCollection coll = new DmLoaiDichVuCollection();
     Query qry = new Query(DmLoaiDichVu.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Пример #2
0
 public DmLoaiDichVuCollection FetchByQuery(Query qry)
 {
     DmLoaiDichVuCollection coll = new DmLoaiDichVuCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }