コード例 #1
0
ファイル: EditModal.cshtml.cs プロジェクト: xingx001/EShop
 public EditModalModel(
     ICategoryAppService categoryAppService,
     IProductDetailAppService productDetailAppService,
     IProductCategoryAppService productCategoryAppService,
     IProductAppService service)
 {
     _categoryAppService        = categoryAppService;
     _productDetailAppService   = productDetailAppService;
     _productCategoryAppService = productCategoryAppService;
     _service = service;
 }
コード例 #2
0
 public ProductCategoryController(IProductCategoryAppService service)
 {
     _service = service;
 }
コード例 #3
0
 public ProductCategoryController(IProductCategoryAppService appService,
                                  IMapper mapper)
 {
     _mapper     = mapper;
     _appService = appService;
 }
コード例 #4
0
 public ProductCategoryAppServiceTests()
 {
     _productCategoryAppService = GetRequiredService <IProductCategoryAppService>();
 }