Exemple #1
0
 public SwiftCredentialsService(
     IRegulatorRepository regulatorRepository,
     ISwiftCredentialsRepository swiftCredentialsRepository,
     ICachedAssetsService assetsService)
 {
     _regulatorRepository        = regulatorRepository;
     _swiftCredentialsRepository = swiftCredentialsRepository;
     _assetsService = assetsService;
 }
Exemple #2
0
 public LegalEntityService(
     ILegalEntityRepository legalEntityRepository,
     ISwiftCredentialsRepository swiftCredentialsRepository,
     ILog log)
 {
     _legalEntityRepository      = legalEntityRepository;
     _swiftCredentialsRepository = swiftCredentialsRepository;
     _log = log;
 }
Exemple #3
0
 public SwiftCredentialsService(
     ISwiftCredentialsRepository swiftCredentialsRepository,
     ILegalEntityRepository legalEntityRepository,
     IClientSwiftCredentialsCache clientSwiftCredentialsCache,
     ILog log)
 {
     _swiftCredentialsRepository  = swiftCredentialsRepository;
     _legalEntityRepository       = legalEntityRepository;
     _clientSwiftCredentialsCache = clientSwiftCredentialsCache;
     _log = log;
 }
 public ClientService(
     ISwiftCredentialsRepository swiftCredentialsRepository,
     IPersonalDataService personalDataService,
     IAssetsServiceWithCache assetsServiceWithCache,
     IClientSwiftCredentialsCache clientSwiftCredentialsCache,
     ILog log)
 {
     _swiftCredentialsRepository  = swiftCredentialsRepository;
     _personalDataService         = personalDataService;
     _assetsServiceWithCache      = assetsServiceWithCache;
     _clientSwiftCredentialsCache = clientSwiftCredentialsCache;
     _log = log;
 }
 public SwiftCredentialsService(ISwiftCredentialsRepository swiftCredentialsRepository)
 {
     _swiftCredentialsRepository = swiftCredentialsRepository;
 }