public async Task <IActionResult> Update([FromRoute] int id, [FromBody] ProductCreateOrUpdateRequestViewModel viewModel)
 => await HandleResultAsync(() => _service.Update(id, viewModel));