示例#1
0
 public ExamModel GetAllExamsByTitle(string title)
 {
     repo = new sqlExamRepo();
     return(repo.GetExamWithTitle(title));
 }
示例#2
0
 public List <ExamModel> GetAllExamsByTeacherId(int id)
 {
     repo = new sqlExamRepo();
     return(repo.GetAllExamsByTeacherId(id));
 }