Example #1
0
 public RewardController(IOrderService orderService,
                         ICacheManager cacheManager,
                         IProductService productService,
                         ISettingService settingService,
                         ICustomerAttributeService customerAttributeService,
                         ICustomerService customerService,
                         IShopppingCartService cartService,
                         ICustomerAddressService addressService,
                         IProductAttributeService attributeService,
                         IPaymentRecordService recordService,
                         ICustomerRewardService rewardService,
                         IProductImagesService imageService,
                         IUnitOfWorkManager unitOfWorkManager)
 {
     this._orderService             = orderService;
     this._cacheManager             = cacheManager;
     this._productService           = productService;
     this._settingService           = settingService;
     this._customerAttributeService = customerAttributeService;
     this._cartService       = cartService;
     this._customerService   = customerService;
     this._addressService    = addressService;
     this._attributeService  = attributeService;
     this._recordService     = recordService;
     this._rewardService     = rewardService;
     this._imageService      = imageService;
     this._unitOfWorkManager = unitOfWorkManager;
 }
Example #2
0
 public WechatController(ISettingService settingService,
                         ICacheManager cacheManager,
                         ICustomerService customerService,
                         ICouponService couponService,
                         ICustomerRewardService rewardService,
                         LoginManager loginManager)
 {
     this._cacheManager    = cacheManager;
     this._settingService  = settingService;
     this._customerService = customerService;
     this._couponService   = couponService;
     this._rewardService   = rewardService;
     this._loginManager    = loginManager;
 }
Example #3
0
 public CustomerController(IOrderService orderService,
                           ICacheManager cacheManager,
                           ICustomerAttributeService customerAttributeService,
                           ICustomerService customerService,
                           IShopppingCartService cartService,
                           IFavoriteService favoriteService,
                           ICustomerRewardService rewardService,
                           IProductReviewService reviewService,
                           IApplyPromoterService applyService,
                           ISettingService settingService,
                           ICouponService couponService,
                           ISMSMessageService messageService,
                           ILoanService loanService,
                           IApplyCashService applyCashService,
                           ICommissionService commissionServicer,
                           IWishOrderService wishService,
                           ISignLogService signService,
                           IUnitOfWorkManager unitOfWorkManager)
 {
     this._orderService             = orderService;
     this._cacheManager             = cacheManager;
     this._customerAttributeService = customerAttributeService;
     this._cartService        = cartService;
     this._customerService    = customerService;
     this._messageService     = messageService;
     this._favoriteService    = favoriteService;
     this._reviewService      = reviewService;
     this._rewardService      = rewardService;
     this._settingService     = settingService;
     this._couponService      = couponService;
     this._applyService       = applyService;
     this._loanService        = loanService;
     this._applyCashService   = applyCashService;
     this._commissionServicer = commissionServicer;
     this._wishService        = wishService;
     this._signService        = signService;
     this._unitOfWorkManager  = unitOfWorkManager;
 }