Exemplo n.º 1
0
 public DVungKsatCollection FetchAll()
 {
     DVungKsatCollection coll = new DVungKsatCollection();
     Query qry = new Query(DVungKsat.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemplo n.º 2
0
 public DVungKsatCollection FetchByQuery(Query qry)
 {
     DVungKsatCollection coll = new DVungKsatCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader()); 
     return coll;
 }
Exemplo n.º 3
0
 public DVungKsatCollection FetchByID(object IdVungKs)
 {
     DVungKsatCollection coll = new DVungKsatCollection().Where("ID_VUNG_KS", IdVungKs).Load();
     return coll;
 }