コード例 #1
0
 public ConfigDetailModel(IConfigDetailService configDetailService, IConfigChartService configChartService, IConfigGroupService configGroupService, IProductService productService)
 {
     _configDetailService = configDetailService;
     _configChartService  = configChartService;
     _configGroupService  = configGroupService;
     _productService      = productService;
 }
コード例 #2
0
ファイル: Product.cshtml.cs プロジェクト: behnix/ShopCore
 public ProductModel(IProductService productService, IConfigGroupService configGroupService, IConfigChartService configChartService, IConfigDetailService configDetailService, ICommentService commentService)
 {
     _productService      = productService;
     _configGroupService  = configGroupService;
     _configChartService  = configChartService;
     _configDetailService = configDetailService;
     _commentService      = commentService;
 }
コード例 #3
0
ファイル: Edit.cshtml.cs プロジェクト: behnix/ShopCore
 public EditModel(IConfigGroupService configGroupService)
 {
     _configGroupService = configGroupService;
 }
コード例 #4
0
ファイル: Delete.cshtml.cs プロジェクト: behnix/ShopCore
 public DeleteModel(IConfigGroupService configGroupService)
 {
     _configGroupService = configGroupService;
 }
コード例 #5
0
ファイル: Create.cshtml.cs プロジェクト: behnix/ShopCore
 public CreateModel(IConfigGroupService configGroupService)
 {
     _configGroupService = configGroupService;
 }
コード例 #6
0
ファイル: Index.cshtml.cs プロジェクト: behnix/ShopCore
 public IndexModel(ICategoryService categoryService, IConfigChartService configChartService, IConfigGroupService configGroupService)
 {
     _categoryService    = categoryService;
     _configChartService = configChartService;
     _configGroupService = configGroupService;
 }