private InterviewQuestion GetInterviewQuestionFromTemporaryHandler()
        {
            var oQuestions = _tempHandler.GetInterviewQuestions();

            Assert.IsNotNull(oQuestions, "Null returned for questions fetch");
            Assert.IsTrue(oQuestions.Count > 1, "No questions returned from fetch");
            return(oQuestions[0]);
        }