public void TimerTickTask()
 {
     lock (lockObj)
     {
         LogHelp.LogLine($"TimerTickTask: Pump stories", LogHelp.LogLevel.debug);
         foreach (KeyValuePair <int, Pump.Pump> item in ThisStation.Pumps)
         {
             ThisStation.NextStepHistory(item.Key);
         }
     }
 }