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); }
public LeadsController(ILeadStatisticService leadStatisticService, IMapper mapper) { _leadStatisticService = leadStatisticService; _mapper = mapper; }