public void Regulate() { var t = _tempSensor.GetTemp(); if (t < _threshold) { _heater.TurnOn(); } else { _heater.TurnOff(); } }