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