public WorkQueueTypePropertyCollection FetchAll()
 {
     var coll = new WorkQueueTypePropertyCollection();
     var qry = new Query(WorkQueueTypeProperty.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public WorkQueueTypePropertyCollection FetchByQuery(Query qry)
 {
     var coll = new WorkQueueTypePropertyCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }