Exemplo n.º 1
0
 public DDichVuCollection FetchAll()
 {
     DDichVuCollection coll = new DDichVuCollection();
     Query qry = new Query(DDichVu.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemplo n.º 2
0
 public DDichVuCollection FetchByQuery(Query qry)
 {
     DDichVuCollection coll = new DDichVuCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader()); 
     return coll;
 }