Nfield.Services.Implementation.NfieldSamplingPointInterviewerAssignmentsService.AssignmentsApi C# (CSharp) Method

AssignmentsApi() private method

private AssignmentsApi ( string surveyId ) : Uri
surveyId string
return System.Uri
        private Uri AssignmentsApi(string surveyId)
        {
            StringBuilder uriText = new StringBuilder(ConnectionClient.NfieldServerUri.AbsoluteUri);
            uriText.AppendFormat("Surveys/{0}/SamplingPointsAssignments", surveyId);
            return new Uri(uriText.ToString());
        }

Same methods

NfieldSamplingPointInterviewerAssignmentsService::AssignmentsApi ( string surveyId, string samplingPointId, string interviewerId ) : Uri