コード例 #1
0
 public OpenModelService(
     Lazy <ILoadModelService> loadModelService,
     IModelMetadataService modelMetadataService,
     IOpenFileDialogService openFileDialogService,
     IExistingInstanceService existingInstanceService,
     IStartInstanceService startInstanceService,
     IApiManagerService apiManagerService)
 {
     this.loadModelService        = loadModelService;
     this.modelMetadataService    = modelMetadataService;
     this.openFileDialogService   = openFileDialogService;
     this.existingInstanceService = existingInstanceService;
     this.startInstanceService    = startInstanceService;
     this.apiManagerService       = apiManagerService;
 }
コード例 #2
0
 internal App(
     ICommandLine commandLine,
     IThemeService themeService,
     IInstaller installer,
     Lazy <MainWindow> mainWindow,
     IModelMetadataService modelMetadataService,
     IExistingInstanceService existingInstanceService,
     ILatestVersionService latestVersionService)
 {
     this.commandLine             = commandLine;
     this.themeService            = themeService;
     this.installer               = installer;
     this.mainWindow              = mainWindow;
     this.modelMetadataService    = modelMetadataService;
     this.existingInstanceService = existingInstanceService;
     this.latestVersionService    = latestVersionService;
 }