public async Task <ActionResult> UpdateClientFullProfile([FromBody] ClientProfileModel clientProfileModel) => await Exec(async operation => { var(_, id) = VerifyUser(UserRole.Client); if (!ModelState.IsValid) { throw new Exception(ExceptionMessage.ModelIsInvalid); } var entity = clientProfileModel.ToEntity(id); await clientProfileService.UpdateClientFullProfile(operation, entity); });