Exemplo n.º 1
0
 public VoucherTokensReservedHandler(
     ICustomerProfileClient customerProfileClient,
     ITransactionReportRepository reportHelper
     )
 {
     _customerProfileClient = customerProfileClient;
     _reportHelper          = reportHelper;
 }
 public TransferToExternalProcessedHandler(
     ICustomerProfileClient customerProfileClient,
     ITransactionReportRepository reportHelper
     )
 {
     _customerProfileClient = customerProfileClient;
     _reportHelper          = reportHelper;
 }
Exemplo n.º 3
0
 public TransactionManager(ITransactionReportRepository transactionReportRepository, IGuid guid,
                           IVirtualNumberApiAccess virtualNumberApiAccess, IBatchReportRepository batchReportRepository)
 {
     this.transactionReportRepository = transactionReportRepository;
     this.guid = guid;
     this.virtualNumberApiAccess = virtualNumberApiAccess;
     this.batchReportRepository  = batchReportRepository;
 }
 public P2PTransferHandler(
     ICustomerProfileClient customerProfileClient,
     ITransactionReportRepository reportHelper
     )
 {
     _customerProfileClient = customerProfileClient;
     _reportHelper          = reportHelper;
 }
 public SmartVoucherUsedHandler(
     ITransactionReportRepository reportHelper,
     IPartnerManagementClient partnerManagementClient,
     ICustomerProfileClient customerProfileClient,
     ISmartVouchersClient smartVouchersClient)
 {
     _reportHelper            = reportHelper;
     _partnerManagementClient = partnerManagementClient;
     _customerProfileClient   = customerProfileClient;
     _smartVouchersClient     = smartVouchersClient;
 }
 public PartnersPaymentTokensReservedHandler(
     ICustomerProfileClient customerProfileClient,
     IPartnerManagementClient partnerManagementClient,
     ITransactionReportRepository reportHelper,
     ILogFactory logFactory)
 {
     _customerProfileClient   = customerProfileClient;
     _partnerManagementClient = partnerManagementClient;
     _reportHelper            = reportHelper;
     _log = logFactory.CreateLog(this);
 }
 public BonusReceivedHandler(
     ICustomerProfileClient customerProfileClient,
     ITransactionReportRepository reportHelper,
     ICampaignClient campaignClient,
     IReferralInfoFetcher referralInfoFetcher,
     IVerticalResolver verticalResolver,
     ILogFactory logFactory)
 {
     _customerProfileClient = customerProfileClient;
     _reportHelper          = reportHelper;
     _campaignClient        = campaignClient;
     _referralInfoFetcher   = referralInfoFetcher;
     _verticalResolver      = verticalResolver;
     _log = logFactory.CreateLog(this);
 }
 public VoucherTokensProcessedHandler(ITransactionReportRepository reportHelper)
 {
     _reportHelper = reportHelper;
 }
 public PaymentTransferProcessedHandler(ITransactionReportRepository reportHelper)
 {
     _reportHelper = reportHelper;
 }
Exemplo n.º 10
0
 public RefundPaymentTransferHandler(ITransactionReportRepository reportHelper)
 {
     _reportHelper = reportHelper;
 }
Exemplo n.º 11
0
 public TransactionReportReader(ITransactionReportRepository transactionReportRepository)
 {
     _transactionReportRepository = transactionReportRepository;
 }