public LiveLeadController(IIdentityMembershipProvider userManager,
                           IRepository <Contact> contactRepository,
                           IGoogleAnalyticsApi gaService)
     : base(userManager)
 {
     this.contactRepository = contactRepository;
     this.gaService         = gaService;
 }
Example #2
0
 public AnalyticDataPropertyExtractor(
     IRepository <Client> clientRepository,
     IRepository <Contact> contactRepository,
     IProductService contactProductService,
     IGoogleAnalyticsApi gaService)
 {
     this.clientRepository      = clientRepository;
     this.contactRepository     = contactRepository;
     this.contactProductService = contactProductService;
     this.gaService             = gaService;
 }
 public CcoController(
     IRepository<Client> clientRepository,
     IRepository<Contact> contactRepository,
     IServerTime serverTime,
     IIdentityMembershipProvider userManager, InsideContext insideContext, IGoogleAnalyticsApi gaService)
     : base(userManager)
 {
     this.clientRepository = clientRepository;
     this.contactRepository = contactRepository;
     this.serverTime = serverTime;
     this.userManager = userManager;
     this.insideContext = insideContext;
     this.gaService = gaService;
 }
Example #4
0
 public CustomEventsExtractor(
     IRepository <Client> clienRepository,
     IRepository <Contact> contactRepository,
     IServerTime serverTime,
     IProductService contactProductService,
     IContactAutoRating contactAutoRating,
     IGoogleAnalyticsApi gaService)
 {
     this.clienRepository       = clienRepository;
     this.contactRepository     = contactRepository;
     this.serverTime            = serverTime;
     this.contactProductService = contactProductService;
     this.contactAutoRating     = contactAutoRating;
     this.gaService             = gaService;
 }
Example #5
0
 public SourceController(
     IRepository <Client> clienRepository,
     IProductService contactProductService,
     IIdentityMembershipProvider userManager,
     IGoogleAnalyticsApi gaService,
     IContactIndexCalculator contactIndexCalculator)
     : base(userManager)
 {
     //this.container = container;
     this.clienRepository        = clienRepository;
     this.contactProductService  = contactProductService;
     this.userManager            = userManager;
     this.gaService              = gaService;
     this.contactIndexCalculator = contactIndexCalculator;
 }