public GetSchemas( IEnsureAuthenticated ensureAuthenticated, ISimVersionCache simVersionCache, IGetSchemas getSchemas, IWriteFileMock writeFileMock, ILogger <GetSchemas> logger) { this.ensureAuthenticated = ensureAuthenticated; this.simVersionCache = simVersionCache; this.getSchemas = getSchemas; this.writeFileMock = writeFileMock; this.logger = logger; }
public GetSchemas( IEnsureAuthenticated ensureAuthenticated, ISimVersionCache simVersionCache, ISimVersionClient simVersionClient, IWriteFile writeFile, IGetCreatedOutputFolder getCreatedOutputFolder, ILogger <GetSchemas> logger) { this.ensureAuthenticated = ensureAuthenticated; this.simVersionCache = simVersionCache; this.simVersionClient = simVersionClient; this.writeFile = writeFile; this.getCreatedOutputFolder = getCreatedOutputFolder; this.logger = logger; }
public GetConfigs( IEnsureAuthenticated ensureAuthenticated, ISimVersionCache simVersionCache, IGetUserIdFromUsername getUserIdFromUsername, IConfigClient configClient, IWriteFile writeFile, IGetCreatedOutputFolder getCreatedOutputFolder, ILogger <GetConfigs> logger) { this.ensureAuthenticated = ensureAuthenticated; this.simVersionCache = simVersionCache; this.getUserIdFromUsername = getUserIdFromUsername; this.configClient = configClient; this.writeFile = writeFile; this.getCreatedOutputFolder = getCreatedOutputFolder; this.logger = logger; }
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; }