public WalletsController(
     ITransferService transferService,
     IPaymentTransfersService paymentTransfersService,
     IWalletManagementService walletManagementService,
     IMapper mapper)
 {
     _transferService         = transferService;
     _walletManagementService = walletManagementService;
     _mapper = mapper;
 }
Esempio n. 2
0
 public PaymentTransferProcessedSubscriber(
     IPaymentTransfersService paymentTransfersService,
     string connectionString,
     string exchangeName,
     string queueName,
     ILogFactory logFactory)
     : base(connectionString, exchangeName, queueName, logFactory)
 {
     _paymentTransfersService = paymentTransfersService;
     _log = logFactory.CreateLog(this);
 }