public virtual bool BoardPlatform (Platform platform) // Attempting to board a platform - override to add cases for denying boarding { return true; }
public virtual bool LeavePlatform (Platform platform) // Attempting to leave the platform - override to add cases for denying departure { return true; }