public ShoppingCartController(NEPService.ShoppingEducationService.IShoppingEducationService shoppingeducationService, NEPService.EducationService.IEducationService educationService, NEPService.DiscountCouponService.IDiscountCouponService discountCouponService, NEPService.UserService.IUserService userService, NEPService.ProductService.IProductService productService, IEMail mailService)
 {
     _shoppingeducationService = shoppingeducationService;
     _discountCouponService    = discountCouponService;
     _educationService         = educationService;
     _userService    = userService;
     _productService = productService;
     _mailService    = mailService;
 }
Example #2
0
 public ShippingPaymentController(IShippingPaymentService shippingPaymentService, ICommonService commonService, NEPService.ShoppingEducationService.IShoppingEducationService shoppingeducationService, NEPService.DiscountCouponService.IDiscountCouponService discountCouponService, NEPService.UserService.IUserService userService, IStorage storageService, NEPService.ClientService.IClientService clientService, IEncryption iEncryptionService)
 {
     _shippingPaymentService   = shippingPaymentService;
     _commonService            = commonService;
     _shoppingeducationService = shoppingeducationService;
     _discountCouponService    = discountCouponService;
     _userService        = userService;
     _storageService     = storageService;
     _clientService      = clientService;
     _iEncryptionService = iEncryptionService;
 }
        //
        // GET: /DiscountCoupon/

        public DiscountCouponController(NEPService.DiscountCouponService.IDiscountCouponService discountCouponService)
        {
            _DiscountCouponService = discountCouponService;
        }