예제 #1
0
 public MachineConfigurator(ISystemInitializer systemInitializer,
                            IManifestRepository manifestRepository,
                            IAppInstaller appInstaller,
                            IDownloadAppInstaller downloadAppInstaller,
                            IAppConfigurator appConfigurator,
                            IConsoleLogger consoleLogger)
 {
     this.systemInitializer    = systemInitializer;
     this.manifestRepository   = manifestRepository;
     this.appInstaller         = appInstaller;
     this.downloadAppInstaller = downloadAppInstaller;
     this.appConfigurator      = appConfigurator;
     this.consoleLogger        = consoleLogger;
 }
 public WingetCliInstaller(IDownloadAppInstaller downloadAppInstaller, IPowerShell powerShell)
 {
     this.downloadAppInstaller = downloadAppInstaller;
     this.powerShell           = powerShell;
 }