public PhysicsBasiCollection FetchAll()
 {
     PhysicsBasiCollection coll = new PhysicsBasiCollection();
     Query qry = new Query(PhysicsBasi.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public PhysicsBasiCollection FetchByQuery(Query qry)
 {
     PhysicsBasiCollection coll = new PhysicsBasiCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public PhysicsBasiCollection FetchByID(object Id)
 {
     PhysicsBasiCollection coll = new PhysicsBasiCollection().Where("ID", Id).Load();
     return coll;
 }