public AlertCategoryEnumCollection FetchAll()
 {
     var coll = new AlertCategoryEnumCollection();
     var qry = new Query(AlertCategoryEnum.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public AlertCategoryEnumCollection FetchByQuery(Query qry)
 {
     var coll = new AlertCategoryEnumCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public AlertCategoryEnumCollection FetchByID(object EnumX)
 {
     AlertCategoryEnumCollection coll = new AlertCategoryEnumCollection().Where("Enum", EnumX).Load();
     return coll;
 }