public IList <ExamQuestion> GetExamQuestions(RequestGetExamQuestions request)
        {
            ExamQuestionHelper   eqh = new ExamQuestionHelper();
            IList <ExamQuestion> eqs = eqh.GetRows(request.OwnerType);

            return(eqs);
        }
 public IList<ExamQuestion> GetExamQuestions(RequestGetExamQuestions request)
 {
     ExamQuestionHelper eqh = new ExamQuestionHelper();
     IList<ExamQuestion> eqs = eqh.GetRows(request.OwnerType);
     return eqs;
 }