Пример #1
0
 public WalletService(IOtpService otpService, IWalletRepository walletRepository, IWalletDetailRepository walletDetailRepository,
                      ITestResultService testResultService, ITokenService tokenService, ICryptoService cryptoService,
                      IAmazonS3Broker amazonS3Broker, ISessionService sessionService, IWalletDetailService walletDetailService)
 {
     _walletDetailRepository = walletDetailRepository;
     _testResultService      = testResultService;
     _tokenService           = tokenService;
     _cryptoService          = cryptoService;
     _amazonS3Broker         = amazonS3Broker;
     _sessionService         = sessionService;
     _walletDetailService    = walletDetailService;
     _otpService             = otpService;
     _walletRepository       = walletRepository;
 }
Пример #2
0
 public WalletDetailService(IWalletDetailRepository walletDetailRepository, ICryptoService cryptoService)
 {
     _walletDetailRepository = walletDetailRepository;
     _cryptoService          = cryptoService;
 }