public async Task <ActionResult> UpdateCar(int carId, [FromBody] CarModel model) => await Exec(async operation => { VerifyUser(UserRole.Client); if (!ModelState.IsValid) { throw new Exception(ExceptionMessage.ModelIsInvalid); } await clientProfileService.UpdateCar(operation, model.ToEntity(carId)); });