void countDownTimer_TimerChanged( object sender, CountDownEventArgs e )
 {
     timeSpanToCountDown = e.Duration;
 }
 private void countDownTimer_Tick( object sender, CountDownEventArgs e )
 {
     View.Countdown = timeSpanToCountDown - e.Duration;
 }