示例#1
0
 //Update Exam
 public bool Update(Exam exam)
 {
     return(_examRepository.Update(exam));
 }
示例#2
0
 //Add Exam
 public bool Add(Exam exam)
 {
     return(_examRepository.Add(exam));
 }