public SystemController(IVariableEncryptor encryptor, IConfigurationService configurationClient) { _encryptor = encryptor; _configurationClient = configurationClient; }
public CapturedVariableProviderFactory(IVariableEncryptor encryptor, ISharedVariablesProvider sharedVariablesProvider) { _encryptor = encryptor; _sharedVariablesProvider = sharedVariablesProvider; }
public CapturedVariableProvider(IVariableContainer variableContainer, string environment, IVariableEncryptor encryptor) { _currentVariables = variableContainer; _environment = environment; _encryptor = encryptor; }