Exemplo n.º 1
0
 public EditModalModel(
     ICategoryAppService categoryAppService,
     IProductDetailAppService productDetailAppService,
     IProductCategoryAppService productCategoryAppService,
     IProductAppService service)
 {
     _categoryAppService        = categoryAppService;
     _productDetailAppService   = productDetailAppService;
     _productCategoryAppService = productCategoryAppService;
     _service = service;
 }
Exemplo n.º 2
0
 public ProductCategoryController(IProductCategoryAppService service)
 {
     _service = service;
 }
Exemplo n.º 3
0
 public ProductCategoryController(IProductCategoryAppService appService,
                                  IMapper mapper)
 {
     _mapper     = mapper;
     _appService = appService;
 }
 public ProductCategoryAppServiceTests()
 {
     _productCategoryAppService = GetRequiredService <IProductCategoryAppService>();
 }