public async Task <Response> UpdateSurvey(SurveyIntake value)
        {
            await _userService.UpdateSurveyInfo(UserId.Value, value);

            return(new SucessResponse());
        }
예제 #2
0
 public async Task UpdateSurveyInfo(string userId, SurveyIntake value)
 {
     await _surveyRepository.UpdateAsync(userId, value);
 }