public BankingDetails(
     IBankingDetailsService IBankingDetailsService,
     IMapper mapper,
     IOptions <AppSettings> appSettings)
 {
     _iBankingDetailsService = IBankingDetailsService;
     _mapper      = mapper;
     _appSettings = appSettings.Value;
 }
Ejemplo n.º 2
0
 public VerificationService(IBankingDetailsService bankingDetailsService, IDataEncryptionService dataEncryptionService, IHashingService hashingService,
                            ILegalEntitiesService legalEntitiesService, WebConfigurationOptions configuration)
 {
     _bankingDetailsService = bankingDetailsService;
     _dataEncryptionService = dataEncryptionService;
     _hashingService        = hashingService;
     _legalEntitiesService  = legalEntitiesService;
     _configuration         = configuration;
 }