コード例 #1
0
 public async Task SavePersonalData([FromBody] UpdateProfileInfoRequest model)
 {
     model.ClientId = _userManager.GetCurrentUserId();
     await _personalDataService.UpdateProfileAsync(model);
 }