public async Task <Response> UpdateSurvey(SurveyIntake value) { await _userService.UpdateSurveyInfo(UserId.Value, value); return(new SucessResponse()); }
public async Task UpdateSurveyInfo(string userId, SurveyIntake value) { await _surveyRepository.UpdateAsync(userId, value); }