示例#1
0
 public ShopService(ICategoryService categoryService, IBrandService brandService,
                    IProductListViewService productListViewService)
 {
     _categoryService        = categoryService;
     _brandService           = brandService;
     _productListViewService = productListViewService;
 }
示例#2
0
 public ShopController(IProductService productService, IProductVariationService productVariationService,
                       IShopService shopService, IProductListViewService productListViewService)
 {
     _productService          = productService;
     _productVariationService = productVariationService;
     _shopService             = shopService;
     _productListViewService  = productListViewService;
 }