Beispiel #1
0
 public AboutViewModel(IUpdateVersionService updateVersionService)
 {
     SelectedUpdateChannel   = updateVersionService.GetSelectedUpdateChannel();
     AvailableUpdateChannels = updateVersionService.GetUpdateChannels().ToArray();
     Version = updateVersionService.GetAppDisplayVersion();
 }
Beispiel #2
0
 public CheckForUpdatesViewModel(IUpdateVersionService updateVersionService)
 {
     this.updateVersionService = updateVersionService;
 }