public async Task <IActionResult> GetAllProductSubCategories()
        {
            var subCategoryDtos = await _productCategoriesService.GetAllSubCategories();

            if (subCategoryDtos == null)
            {
                return(BadRequest());
            }

            return(Ok(subCategoryDtos));
        }