public IEnumerable<JobOpeningInterviewQuestionDAO> GetJobOpeningInterviewQuestions()
        {
            JobOpeningInterviewQuestionServiceClient client = new JobOpeningInterviewQuestionServiceClient();

            try
            {
                IEnumerable<JobOpeningInterviewQuestionDAO> result = client.GetJobOpeningInterviewQuestions();
                return result;
            }
            catch (FaultException<KaskServiceException> e)
            {
                throw new HttpException(e.Message);
            }
        }