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