public ProductCategoryService(VMDBContext db, IUserService userService, IProductSubCategoryService productSubCategoryService, ILogger <IProductCategoryService> logger, IConfiguration config)
 {
     this._db     = db;
     this._logger = logger;
     this._config = config;
     this._productSubCategoryService = productSubCategoryService;
     this._userService = userService;
 }
 public ProductSubCategoryController(
     IProductSubCategoryService productSubCategoryService
     )
 {
     _productSubCategoryService = productSubCategoryService;
 }