コード例 #1
0
        public async Task <IActionResult> CreateOrUpdate([FromBody] ProductImageModel ProductImage)
        {
            var result = await _ProductImageService.CreateOrUpdate(ProductImage);

            return(Ok(result));
        }