예제 #1
0
 public SettingsPageViewModel(IMyDialogService dlg, IBusyService busy, IAppSettingsService _appSettings, IStorageInterfaceService _storageInterfaceService)
 {
     SettingsPartViewModel = new SettingsPartViewModel(dlg, busy, _appSettings, _storageInterfaceService);
     AboutPartViewModel    = new AboutPartViewModel(dlg, busy);
 }
예제 #2
0
 public SettingsPartViewModel(IMyDialogService dlg, IBusyService busy, IAppSettingsService _appSettings, IStorageInterfaceService _storageInterfaceService)
 {
     this.DialogSrv        = dlg;
     this.BusySrv          = busy;
     this._settings        = _appSettings;
     this.StorageInterface = _storageInterfaceService;
 }
예제 #3
0
 public DeployViewModel(IMyDialogService dlg, IBusyService busy, IStorageInterfaceService _storageInterfaceService)
 {
     this.DialogSrv   = dlg;
     this.BusySrv     = busy;
     StorageInterface = _storageInterfaceService;
 }