/// <summary>
 /// Initializes a new instance of the <see cref="TransactionalRequestProcessor" /> class.
 /// </summary>
 /// <param name="serviceLayerConfiguration">The service layer configuration.</param>
 /// <param name="cacheManager">The cache manager.</param>
 /// <param name="userContextFactory">The user context factory.</param>
 /// <param name="orgUnitContextStorage">The org unit context storage.</param>
 public TransactionalRequestProcessor(ServiceLayerConfiguration serviceLayerConfiguration, ICacheManager cacheManager, IUserContextFactory userContextFactory, IOrgUnitContextStorage orgUnitContextStorage)
     : base(serviceLayerConfiguration, cacheManager)
 {
     _userContextFactory = userContextFactory;
     _orgUnitContextStorage = orgUnitContextStorage;
 }
Ejemplo n.º 2
0
 public SettingsManager(IEntityContextFactory entityContextFactory, IOrgUnitContextStorage orgUnitContextStorage)
 {
     _entityContextFactory = entityContextFactory;
     _orgUnitContextStorage = orgUnitContextStorage;
 }
 public EncryptedSettingsManager(IEntityContextFactory entityContextFactory, IOrgUnitContextStorage orgUnitContextStorage, ISymmetricKeyStore symmetricKeyStore)
     : base(entityContextFactory, orgUnitContextStorage)
 {
     _symmetricKeyStore = symmetricKeyStore;
 }