/// <summary>
        /// Processes the current values to update the displayed values.
        /// </summary>
        private void UpdateTimeValues()
        {
            var currentTime = DateCalculator.GetCurrentTime(this);

            this.RemainingTime = DateCalculator.GetDeltaTime(this, currentTime);

            this.TargetTime = DateCalculator.GetTargetTime(this.StartTime, this.DefaultWorkLength, this.TotalBreakLength);
        }