Exemple #1
0
 public GetDefaultConfig(
     IGetDefaultConfigPath getDefaultConfigPath,
     ISimVersionClient simVersionClient,
     ILogger <GetDefaultConfig> logger)
 {
     this.getDefaultConfigPath = getDefaultConfigPath;
     this.simVersionClient     = simVersionClient;
     this.logger = logger;
 }
Exemple #2
0
 public GetConfigs(
     IEnsureAuthenticated ensureAuthenticated,
     IGetDefaultConfigPath getDefaultConfigPath,
     ISimVersionCache simVersionCache,
     ISimVersionClient simVersionClient,
     IConfigClient configClient,
     IGetConfigs getConfigs,
     IWriteFileMock writeFileMock,
     ILogger <GetConfigs> logger)
 {
     this.ensureAuthenticated  = ensureAuthenticated;
     this.getDefaultConfigPath = getDefaultConfigPath;
     this.simVersionCache      = simVersionCache;
     this.simVersionClient     = simVersionClient;
     this.configClient         = configClient;
     this.getConfigs           = getConfigs;
     this.writeFileMock        = writeFileMock;
     this.logger = logger;
 }
 public GetStudy(
     IEnsureAuthenticated ensureAuthenticated,
     ISimVersionCache simVersionCache,
     IGetDefaultConfig getDefaultConfig,
     IGetDefaultConfigPath getDefaultConfigPath,
     ISimVersionClient simVersionClient,
     IStudyClient studyClient,
     IWaitForStudy waitForStudy,
     IGetStudy getStudy,
     IDownloadBlobDirectoryMock downloadBlobDirectoryMock,
     ILogger <GetStudy> logger)
 {
     this.ensureAuthenticated       = ensureAuthenticated;
     this.simVersionCache           = simVersionCache;
     this.getDefaultConfig          = getDefaultConfig;
     this.getDefaultConfigPath      = getDefaultConfigPath;
     this.simVersionClient          = simVersionClient;
     this.studyClient               = studyClient;
     this.waitForStudy              = waitForStudy;
     this.getStudy                  = getStudy;
     this.downloadBlobDirectoryMock = downloadBlobDirectoryMock;
     this.logger = logger;
 }