public int UpdateExamQuestionResult(DTO.ExamQuestionResult examQuestionResult)
 {
     return(_examInternal.UpdateExamQuestionResult(Mapper.Map <DTO.ExamQuestionResult, ExamQuestionResult>(examQuestionResult)));
 }
 public int AddExamQuestionResults(DTO.ExamQuestionResult examQuestionResult)
 {
     return(_examInternal.AddExamQuestionResults(Mapper.Map <DTO.ExamQuestionResult, ExamQuestionResult>(examQuestionResult)));
 }