Beispiel #1
0
 public ServiceCollection FetchAll()
 {
     ServiceCollection coll = new ServiceCollection();
     Query qry = new Query(Service.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Beispiel #2
0
 public ServiceCollection FetchByQuery(Query qry)
 {
     ServiceCollection coll = new ServiceCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }