//Update Exam public bool Update(Exam exam) { return(_examRepository.Update(exam)); }
//Add Exam public bool Add(Exam exam) { return(_examRepository.Add(exam)); }