Esempio n. 1
0
 public LeadStateChangedSubscriber(
     string connectionString,
     string exchangeName,
     string queueName,
     ILogFactory logFactory,
     ILeadStatisticService leadStatisticService,
     IMapper mapper)
     : base(connectionString, exchangeName, queueName, true, logFactory)
 {
     _leadStatisticService = leadStatisticService;
     _mapper = mapper;
     _log    = logFactory.CreateLog(this);
 }
Esempio n. 2
0
 public LeadsController(ILeadStatisticService leadStatisticService, IMapper mapper)
 {
     _leadStatisticService = leadStatisticService;
     _mapper = mapper;
 }