public void StartStimulate() { if (Pressurized) { Valves.ForEach(v => v.Pressurized = true); System.Threading.Thread.Sleep(200); } }
public void EndStimulate() { System.Threading.Thread.Sleep(1000); Valves.ForEach(v => v.Pressurized = false); }