Nfield.Services.Implementation.NfieldInterviewQualityService.CheckInterviewId C# (CSharp) Method

CheckInterviewId() private static method

private static CheckInterviewId ( string interviewId ) : void
interviewId string
return void
        private static void CheckInterviewId(string interviewId)
        {
            if (interviewId == null)
                throw new ArgumentNullException("interviewId");
            if (interviewId.Trim().Length == 0)
                throw new ArgumentException("interviewId cannot be empty");
        }