public PromotionDataService(IPromotionService promotionService, ICouponService couponService, IPromotionBrandRelationRepository promotionBrandRelationRepository, IPromotionRepository promotionRepository, IFavoriteService favoriteService, IShareService shareService, ICouponDataService couponDataService, IResourceService resourceService)
 {
     _promotionRepository = promotionRepository;
     _favoriteService = favoriteService;
     _shareService = shareService;
     _couponDataService = couponDataService;
     _resourceService = resourceService;
     _promotionBrandRelationRepository = promotionBrandRelationRepository;
     _couponService = couponService;
     _promotionService = promotionService;
 }
예제 #2
0
 public PromotionDataService(IPromotionService promotionService, ICouponService couponService, IPromotionBrandRelationRepository promotionBrandRelationRepository, IPromotionRepository promotionRepository, IFavoriteService favoriteService, IShareService shareService, ICouponDataService couponDataService, IResourceService resourceService)
 {
     _promotionRepository = promotionRepository;
     _favoriteService     = favoriteService;
     _shareService        = shareService;
     _couponDataService   = couponDataService;
     _resourceService     = resourceService;
     _promotionBrandRelationRepository = promotionBrandRelationRepository;
     _couponService    = couponService;
     _promotionService = promotionService;
 }
예제 #3
0
 public CouponController(ICouponDataService couponDataService,
                         ICouponRepository couponRepo,
                         IPromotionRepository promotionRepo,
                         IProductRepository productRepo,
                         IStoreRepository storeRepo)
 {
     this._couponDataService = couponDataService;
     _couponRepo             = couponRepo;
     _productRepo            = productRepo;
     _promotionRepo          = promotionRepo;
     _storeRepo = storeRepo;
 }
예제 #4
0
 public CouponController(ICouponDataService couponDataService,
     ICouponRepository couponRepo,
     IPromotionRepository promotionRepo,
     IProductRepository productRepo,
     IStoreRepository storeRepo)
 {
     this._couponDataService = couponDataService;
     _couponRepo = couponRepo;
     _productRepo = productRepo;
     _promotionRepo = promotionRepo;
     _storeRepo = storeRepo;
 }
예제 #5
0
 public ProductDataService(IPromotionDataService promotionDataService, IPromotionService promotionService,
     ICouponService couponService, IResourceService resourceService, IProductRepository productRepository,
     IShareService shareService, IFavoriteService favoriteService, ICouponDataService couponDataService,
     IPromotionRepository promotionRepo,
     IProductPropertyRepository productpropertyRepo,
     IProductPropertyValueRepository productpropertyvalueRepo,
     IProductCode2StoreCodeRepository productcodemapRepo)
 {
     _promotionDataService = promotionDataService;
     _productRepository = productRepository;
     _shareService = shareService;
     _favoriteService = favoriteService;
     _couponDataService = couponDataService;
     _resourceService = resourceService;
     _couponService = couponService;
     _promotionService = promotionService;
     _promotionRepo = promotionRepo;
     _productpropertyRepo = productpropertyRepo;
     _productpropertyvalueRepo = productpropertyvalueRepo;
     _productcodemapRepo = productcodemapRepo;
 }
예제 #6
0
 public PassHelper(IBrandDataService brandDataService)
 {
     _brandDataService = brandDataService;
     _couponDataService = ServiceLocator.Current.Resolve<ICouponDataService>();
 }
예제 #7
0
 public PassController(ICouponDataService couponDataService, IBrandDataService brandDataService)
 {
     _couponDataService = couponDataService;
     _passHelper = new PassHelper(brandDataService);
 }
예제 #8
0
 public PassHelper(IBrandDataService brandDataService)
 {
     _brandDataService  = brandDataService;
     _couponDataService = ServiceLocator.Current.Resolve <ICouponDataService>();
 }
예제 #9
0
 public PassController(ICouponDataService couponDataService, IBrandDataService brandDataService)
 {
     _couponDataService = couponDataService;
     _passHelper        = new PassHelper(brandDataService);
 }
예제 #10
0
 public CouponCodeBusinessService(ICouponDataService dataService)
 {
     _dataService = dataService;
 }