public async Task <IActionResult> AddPhotoForProduct(int productId, PhotoForCreation photoDto)
        {
            try
            {
                var product = await _productServices.GetProductForUpdate(productId);

                if (product == null)
                {
                    return(new BadRequestObjectResult(new { Message = "Không tìm thấy user" }));
                }
                var photoForReturn = await _photoService.AddPhotoForProduct(productId, photoDto);

                if (photoForReturn == null)
                {
                    return(new BadRequestObjectResult(new { Message = "Tải hình ảnh lên không thành công" }));
                }
                return(Ok(photoForReturn));
            }
            catch (Exception ex)
            {
                return(new BadRequestObjectResult(new { Message = ex.Message.ToString() }));
            }
        }