Exemplo n.º 1
0
 public DmucVungkhaosatCollection FetchAll()
 {
     DmucVungkhaosatCollection coll = new DmucVungkhaosatCollection();
     Query qry = new Query(DmucVungkhaosat.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemplo n.º 2
0
 public DmucVungkhaosatCollection FetchByQuery(Query qry)
 {
     DmucVungkhaosatCollection coll = new DmucVungkhaosatCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemplo n.º 3
0
 public DmucVungkhaosatCollection FetchByID(object Id)
 {
     DmucVungkhaosatCollection coll = new DmucVungkhaosatCollection().Where("id", Id).Load();
     return coll;
 }