public AttrCategoryAppService(ILogger <AttrCategoryAppService> logger, IAttrCategoryService attrCategoryService, ICurrentContext context, ICommonService commonService, IProductAttributeService productAttributeService)
 {
     _logger = logger;
     _attrCategoryService     = attrCategoryService;
     _context                 = context;
     _commonService           = commonService;
     _productAttributeService = productAttributeService;
 }
 public AttrCategoryCommandHandler(IAttrCategoryService attrCategoryService, ICommonService commonService)
 {
     _attrCategoryService = attrCategoryService;
     _commonService       = commonService;
 }