public MarketingExportImport(IPromotionSearchService promotionSearchService, IPromotionService promotionService, IDynamicContentService dynamicContentService, ICouponService couponService, IDynamicContentSearchService dynamicContentSearchService, IPromotionUsageService marketingUsageService)
 {
     _promotionSearchService      = promotionSearchService;
     _promotionService            = promotionService;
     _dynamicContentService       = dynamicContentService;
     _couponService               = couponService;
     _dynamicContentSearchService = dynamicContentSearchService;
     _usageService = marketingUsageService;
 }
 public MarketingModuleDynamicContentController(IDynamicContentService dynamicContentService,
                                                IMarketingDynamicContentEvaluator dynamicContentEvaluator, IDynamicContentSearchService dynamicConentSearchService
                                                , IMarketingExtensionManager marketingExtensionManager)
 {
     _dynamicContentService      = dynamicContentService;
     _dynamicContentEvaluator    = dynamicContentEvaluator;
     _dynamicConentSearchService = dynamicConentSearchService;
     _marketingExtensionManager  = marketingExtensionManager;
 }
 public MarketingModuleDynamicContentController(IDynamicContentService dynamicContentService, IMarketingExtensionManager marketingExtensionManager,
                                                IMarketingDynamicContentEvaluator dynamicContentEvaluator, IExpressionSerializer expressionSerializer, IDynamicContentSearchService dynamicConentSearchService)
 {
     _dynamicContentService      = dynamicContentService;
     _marketingExtensionManager  = marketingExtensionManager;
     _dynamicContentEvaluator    = dynamicContentEvaluator;
     _expressionSerializer       = expressionSerializer;
     _dynamicConentSearchService = dynamicConentSearchService;
 }
 public MarketingExportImport(JsonSerializer jsonSerializer, IPromotionSearchService promotionSearchService, IDynamicContentSearchService dynamicContentSearchService, IPromotionService promotionService, IDynamicContentService dynamicContentService, ICouponService couponService, IPromotionUsageService promotionUsageService)
 {
     _jsonSerializer              = jsonSerializer;
     _promotionSearchService      = promotionSearchService;
     _dynamicContentSearchService = dynamicContentSearchService;
     _promotionService            = promotionService;
     _dynamicContentService       = dynamicContentService;
     _couponService         = couponService;
     _promotionUsageService = promotionUsageService;
 }