public DeleteProductCategoryCommandHandler(IProductCategoryCommandService productCategoryCommandService)
 {
     this.productCategoryCommandService = productCategoryCommandService;
 }
 public AddProductCategoriesCommandHandler(IProductCategoryCommandService productCategoryCommandService)
 {
     this.productCategoryCommandService = productCategoryCommandService;
 }
Esempio n. 3
0
 public UpdateProductCategoryCommandHandler(IProductCategoryCommandService service)
 {
     this.service = service;
 }