Пример #1
0
 public AboutModalViewModel(
     Common.Configuration.Config appConfig,
     UpdateService appUpdater,
     IAppSettings appSettings,
     UpdateViewModel updateViewModel)
 {
     _appConfig   = appConfig;
     _appUpdater  = appUpdater;
     _appSettings = appSettings;
     Update       = updateViewModel;
 }
Пример #2
0
 public AboutModalViewModel(
     Common.Configuration.Config appConfig,
     UpdateService appUpdater,
     IAppSettings appSettings,
     UpdateViewModel updateViewModel,
     IModals modals)
 {
     _modals        = modals;
     _appConfig     = appConfig;
     _appUpdater    = appUpdater;
     _appSettings   = appSettings;
     Update         = updateViewModel;
     LicenseCommand = new RelayCommand(ShowLicense);
 }