public void Undo(IDataCommand dataCommand)
        {
            ITemperature control = dataCommand.GetDevice() as ITemperature;

            if (control != null)
            {
                control.IncrementTemperature();
            }
        }