Beispiel #1
0
 public ApplyCashController(IApplyCashService cashService,
                            ICustomerService customerService,
                            IUnitOfWorkManager unitOfWorkManager)
 {
     this._cashService       = cashService;
     this._customerService   = customerService;
     this._unitOfWorkManager = unitOfWorkManager;
 }
Beispiel #2
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;
 }