public SysVersionCollection FetchAll()
 {
     SysVersionCollection coll = new SysVersionCollection();
     Query qry = new Query(SysVersion.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public SysVersionCollection FetchByQuery(Query qry)
 {
     SysVersionCollection coll = new SysVersionCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public SysVersionCollection FetchByID(object PkIntID)
 {
     SysVersionCollection coll = new SysVersionCollection().Where("PK_intID", PkIntID).Load();
     return coll;
 }