Example #1
0
 //Get By Id
 public Exam GetById(int id)
 {
     return(_examRepository.GetById(id));
 }
        public Exam GetById(int id)
        {
            Exam exam = _examRepository.GetById(id);

            return(exam);
        }