public SmartVoucherUsedSubscriber(
     ICustomerStatisticService customerStatisticService,
     string connectionString,
     string exchangeName,
     string queueName,
     ILogFactory logFactory)
     : base(connectionString, exchangeName, queueName, logFactory)
 {
     _customerStatisticService = customerStatisticService;
 }
 public CustomerPhoneVerifiedEventSubscriber(
     string connectionString,
     string exchangeName,
     string queueName,
     ILogFactory logFactory,
     ICustomerStatisticService customerStatisticService)
     : base(connectionString, exchangeName, queueName, true, logFactory)
 {
     _customerStatisticService = customerStatisticService;
     _log = logFactory.CreateLog(this);
 }
 public PartnersPaymentTokensReservedEventSubscriber(
     string connectionString,
     string exchangeName,
     string queueName,
     ILogFactory logFactory,
     ICustomerStatisticService customerStatisticService)
     : base(connectionString, exchangeName, queueName, true, logFactory)
 {
     _customerStatisticService = customerStatisticService;
     _log = logFactory.CreateLog(this);
 }
Example #4
0
 public CustomersController(ICustomerStatisticService customStatisticService, IMapper mapper)
 {
     _customerStatisticService = customStatisticService;
     _mapper = mapper;
 }