コード例 #1
0
ファイル: ProductController.cs プロジェクト: war-man/TheShoes
 public ProductController(IProductService productService, IProductCategoryService productCategoryService,
                          IProviderService providerService, IColorService colorService,
                          ICommonService commonService, IHeelService heelService,
                          IHeightService heightService, ITypeService typeService)
 {
     this._typeService            = typeService;
     this._heightService          = heightService;
     this._heelService            = heelService;
     this._commonService          = commonService;
     this._providerService        = providerService;
     this._colorService           = colorService;
     this._productService         = productService;
     this._productCategoryService = productCategoryService;
 }
コード例 #2
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;
 }
コード例 #3
0
ファイル: HeelController.cs プロジェクト: war-man/TheShoes
 public HeelController(IErrorService errorService, IHeelService heelService)
     : base(errorService)
 {
     this._heelService = heelService;
 }