コード例 #1
0
 public ProVarationController(IProductService productService, IProductVariationService productVariationService,
                              IProductImageService productImageService)
 {
     _productService          = productService;
     _productVariationService = productVariationService;
     _productImageService     = productImageService;
 }
コード例 #2
0
 public ProductController(IProductService productService, IBrandService brandService,
                          IVendorService vendorService, IProductVariationService productVariationService)
 {
     _productService          = productService;
     _brandService            = brandService;
     _vendorService           = vendorService;
     _productVariationService = productVariationService;
 }
コード例 #3
0
 public CartController(IProductService productService, IProductVariationService productVariationService,
                       IShoppingCartService shoppingCartService, IShoppingCartDetailService shoppingCartDetailService)
 {
     _productService            = productService;
     _productVariationService   = productVariationService;
     _shoppingCartService       = shoppingCartService;
     _shoppingCartDetailService = shoppingCartDetailService;
 }
コード例 #4
0
 public ShopController(IProductService productService, IProductVariationService productVariationService,
                       IShopService shopService, IProductListViewService productListViewService)
 {
     _productService          = productService;
     _productVariationService = productVariationService;
     _shopService             = shopService;
     _productListViewService  = productListViewService;
 }
コード例 #5
0
 public ProductController(IProductService productService, IBrandService brandService, ICategoryService categoryService,
                          IVendorService vendorService, IProductVariationService productVariationService, IProductImageService productImageService)
 {
     _productService          = productService;
     _brandService            = brandService;
     _vendorService           = vendorService;
     _productVariationService = productVariationService;
     _productImageService     = productImageService;
     _categoryService         = categoryService;
 }
コード例 #6
0
 public HomeController(IBannerService bannerService, IProductAdvertisement productAdvertisement,
                       IProductVariationService productVariationService, IProductService productService,
                       IProductImageService productImageService)
 {
     _bannerService           = bannerService;
     _productAdvertisement    = productAdvertisement;
     _productVariationService = productVariationService;
     _productService          = productService;
     _productImageService     = productImageService;
 }
コード例 #7
0
 public CheckoutController(IShoppingCartService shoppingCartService, IShoppingCartDetailService shoppingCartDetailService,
                           IOrderService orderService, IOrderDetailServicecs orderDetailServicecs, IUserService userService, IProductVariationService productVariationService)
 {
     _shoppingCartService       = shoppingCartService;
     _shoppingCartDetailService = shoppingCartDetailService;
     _orderService            = orderService;
     _orderDetailServicecs    = orderDetailServicecs;
     _userService             = userService;
     _productVariationService = productVariationService;
 }
コード例 #8
0
 public HomeController(IBannerService bannerService, IProductAdvertisement productAdvertisement,
                       IProductVariationService productVariationService, IProductService productService,
                       IProductImageService productImageService, ICategoryService categoryService, IBrandService brandService)
 {
     _bannerService           = bannerService;
     _productAdvertisement    = productAdvertisement;
     _productVariationService = productVariationService;
     _productService          = productService;
     _productImageService     = productImageService;
     _categoryService         = categoryService;
     _brandService            = brandService;
 }