示例#1
0
 public ProductImagesController(IMapper mapper,
                                IProductColorService productColorService,
                                IProductImagesService productImageSersvice,
                                IProductService productService)
 {
     _mapper = mapper;
     _productColorService  = productColorService;
     _productImagesService = productImageSersvice;
     _productService       = productService;
 }
示例#2
0
 public ProductController(IProductService productService, IConfiguration configuration,
                          IBillService billService,
                          IProductColorService productColorService,
                          IColorService colorService,
                          IProductCategoryService productCategoryService)
 {
     _colorService           = colorService;
     _productColorService    = productColorService;
     _productService         = productService;
     _productCategoryService = productCategoryService;
     _configuration          = configuration;
     _billService            = billService;
 }
示例#3
0
 public ProductController(IErrorService errorService, IProductService productService,
                          IProductMaterialService productMaterialService, IMaterialService materialService,
                          IProductColorService productColorService, IColorService colorService,
                          IProductSizeService productSizeService, ISizeService sizeService,
                          IProductHeightService productHeightService, IHeightService heightService,
                          IProductTypeService productTypeService, ITypeService typeService,
                          IProductHeelService productHeelService, IHeelService heelService)
     : base(errorService)
 {
     this._productHeelService     = productHeelService;
     this._heelService            = heelService;
     this._productTypeService     = productTypeService;
     this._typeService            = typeService;
     this._productHeightService   = productHeightService;
     this._heightService          = heightService;
     this._productSizeService     = productSizeService;
     this._sizeService            = sizeService;
     this._productService         = productService;
     this._materialService        = materialService;
     this._productColorService    = productColorService;
     this._colorService           = colorService;
     this._productMaterialService = productMaterialService;
 }
示例#4
0
 public ProductColorController(IProductColorService productColorService)
 {
     _productColorService = productColorService;
 }
示例#5
0
 public ProductColorsViewComponent(IProductColorService productColorService)
 {
     _productcolorService = productColorService;
 }