public StudyIntegrityQueueUidCollection FetchAll()
 {
     var coll = new StudyIntegrityQueueUidCollection();
     var qry = new Query(StudyIntegrityQueueUid.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public StudyIntegrityQueueUidCollection FetchByQuery(Query qry)
 {
     var coll = new StudyIntegrityQueueUidCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public StudyIntegrityQueueUidCollection FetchByID(object Guid)
 {
     StudyIntegrityQueueUidCollection coll = new StudyIntegrityQueueUidCollection().Where("GUID", Guid).Load();
     return coll;
 }