Example #1
0
 public IEnumerable <DLModel.Exam> GetAllActiveExam(int clientID)
 {
     return(_examRepository.GetAllActiveExamByClientID(clientID));
     //return _examRepository.GetAll(exam => (exam.ExamStatus != false)).ToList();
 }