public async Task <IActionResult> AddProductImage(ProductBlobFileChangeModel model, IFormFile fileImage)
        {
            var response = await _product.BlobFileAddAsync(model, fileImage);

            return(Json(response));
        }