public SystemSettingsRepository(
            VirtualWorkDatabaseContext mtfDatabase,
            SystemSettingConverter systemSettingConverter,
            PasswordHashRepository passwordHashRepository,
            ProductionCipher productionCipher)
            : base(mtfDatabase, systemSettingConverter, mtfDatabase.SystemSettings)
        {
            this.productionCipher = productionCipher;

            encryptorKey = passwordHashRepository.GetSystemEncryptionPassword("sd4lrR!FÉ.4SW3");
        }
Exemplo n.º 2
0
 public PropertyCopier(ProductionCipher productionCipher,
                       PasswordHashRepository passwordHashRepository)
 {
     this.productionCipher       = productionCipher;
     this.passwordHashRepository = passwordHashRepository;
 }