public async Task <IActionResult> Edit(int id, [FromForm] EditProductCategoryInput input)
        {
            var absolutePath = Path.Combine(_webHostEnvironment.WebRootPath, ProductCategory.IMAGE_PATH);
            await _productCateService.Edit(id, input, absolutePath);

            return(Ok());
        }