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 ProductImagesController(
     IProductImagesService productImagesService,
     IHostingEnvironment hostingEnvironment)
 {
     _productImagesService = productImagesService;
     _hostingEnvironment   = hostingEnvironment;
 }
Example #3
0
 public ProductImagesController(IMapper mapper,
                                IProductColorService productColorService,
                                IProductImagesService productImageSersvice,
                                IProductService productService)
 {
     _mapper = mapper;
     _productColorService  = productColorService;
     _productImagesService = productImageSersvice;
     _productService       = productService;
 }
Example #4
0
 public AdminProductsService(
     JjOnlineStoreDbContext dbContext,
     IMapper mapper,
     IFileService fileService,
     IProductImagesService productImagesService)
     : base(dbContext)
 {
     Mapper                = mapper;
     _fileService          = fileService;
     _productImagesService = productImagesService;
 }
Example #5
0
 public ProductController(ICategoryService categoryService,
                          IProductService productService,
                          IProductImagesService productImageService,
                          ICacheManager cacheManager,
                          IOssService imageService,
                          IProductAttributeService attributeService,
                          IBrandService brandService,
                          IProductTagService tagService,
                          IUnitOfWorkManager unitOfWorkManager)
 {
     this._categoryService     = categoryService;
     this._productService      = productService;
     this._productImageService = productImageService;
     this._cacheManager        = cacheManager;
     this._attributeService    = attributeService;
     this._imageService        = imageService;
     this._brandService        = brandService;
     this._tagService          = tagService;
     this._unitOfWorkManager   = unitOfWorkManager;
 }
Example #6
0
 public ProductController(ICategoryService categoryService,
                          ICustomerService customerService,
                          IProductService productService,
                          IProductImagesService imageService,
                          ICacheManager cacheManager,
                          IImageService mediaService,
                          IFavoriteService favoriteService,
                          IProductReviewService reviewService,
                          IBrandService brandService,
                          IProductAttributeService attributeService,
                          ISettingService settingService)
 {
     this._categoryService  = categoryService;
     this._productService   = productService;
     this._imageService     = imageService;
     this._cacheManager     = cacheManager;
     this._mediaService     = mediaService;
     this._favoriteService  = favoriteService;
     this._reviewService    = reviewService;
     this._attributeService = attributeService;
     this._settingService   = settingService;
     this._customerService  = customerService;
     this._brandService     = brandService;
 }
Example #7
0
 public ProductController(IErrorService errorService, IProductService productService, IProductImagesService productImagesService)
     : base(errorService)
 {
     this._productService       = productService;
     this._productImagesService = productImagesService;
 }
Example #8
0
 public ProductImageController(IProductImagesService ProductImageService)
 {
     _productImagesService = ProductImageService;
 }
Example #9
0
 public ProductController(IProductService productService, IProductImagesService productImagesService)
 {
     _productService       = productService;
     _productImagesService = productImagesService;
 }
 public ProductImageController(IProductImagesService productImageService)
 {
     _imagesService = productImageService;
 }