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