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