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;
 }
 public StudyIntegrityQueueCollection FetchByID(object Guid)
 {
     StudyIntegrityQueueCollection coll = new StudyIntegrityQueueCollection().Where("GUID", Guid).Load();
     return coll;
 }