public void TestApplicantManagerRetrieveApplicantForInterview()
        {
            // Arrange
            int         applicantID = 100000;
            ApplicantVM applicant   = null;
            int         result      = 0;

            // Act
            applicant = _applicantManager.RetrieveApplicantForInterview(applicantID);
            if (applicant != null)
            {
                result = 1;
            }

            // Assert
            Assert.AreEqual(1, result);
        }// End TestApplicantManagerRetrieveApplicantForInterview()