Example #1
0
 /// <summary>
 /// gets a list of all the quizzes associated with a course from the database
 /// through the quiz entity
 /// </summary>
 /// <param name="course">course to get quizzes in</param>
 /// <returns></returns>
 public static List <QuizData> GetQuizzes(CourseData course)
 {
     return(entity.ReadQuizzes(course));
 }