Nfield.Services.Implementation.NfieldInterviewQualityService.CheckInterviewId C# (CSharp) 메소드

CheckInterviewId() 개인적인 정적인 메소드

private static CheckInterviewId ( string interviewId ) : void
interviewId string
리턴 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");
        }