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; }
public StoreController(NEPService.ProductService.IProductService productservice, IEncryption encryptionService, NEPService.NewsService.INewsService newsService) { _productservice = productservice; _encryptionService = encryptionService; _newsService = newsService; }
// GET: Product public ProductController(NEPService.ProductService.IProductService productservice, ICommonService commonService, IStorage storageService) { _productservice = productservice; _commonService = commonService; _storageService = storageService; }