public JobOpeningInterviewQuestionDAO GetJobOpeningInterviewQuestion(int id)
        {
            JobOpeningInterviewQuestionServiceClient client = new JobOpeningInterviewQuestionServiceClient();

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