Esempio n. 1
0
 public InstantViewModel CreateViewModel(Instant instant)
 {
     return new InstantViewModel(instant, _eventAggregator);
 }
Esempio n. 2
0
 public InstantViewModel(Instant instant, EventAggregator eventAggregator, ITimeToGoNavigationService timeToGoNavigationService)
 {
     _instant = instant;
     _timeToGoNavigationService = timeToGoNavigationService;
     _eventAggregator = eventAggregator;
 }
Esempio n. 3
0
 public CountDownViewModel(Instant instant)
 {
     Instant = instant;
     _timer = new Timer(TimerTick, null, 0, 1000);
 }