Ejemplo n.º 1
0
 public ABTestListComponentController(ITestManager testManager, IMarketingTestListService marketingTestListService,
                                      ISiteHelperService siteHelperService)
 {
     _testManager = testManager;
     _marketingTestListService = marketingTestListService;
     _siteHelperService        = siteHelperService;
 }
Ejemplo n.º 2
0
        public void SetUp()
        {
            _stubContentRepository = Substitute.For <IContentRepository>();
            _stubSiteHelperService = Substitute.For <ISiteHelperService>();

            _marketingTestListService = new MarketingTestListService(_stubContentRepository, _stubSiteHelperService);
        }
Ejemplo n.º 3
0
 public MarketingTestListService(IContentRepository contentRepository, ISiteHelperService siteHelperService)
 {
     _contentRepository = contentRepository;
     _siteHelperService = siteHelperService;
 }