SelectStudentsByCourseNo() public method

public SelectStudentsByCourseNo ( Nullable courseID ) : ObjectResult
courseID Nullable
return ObjectResult
コード例 #1
0
 public List<Person> SelectStudentsOfCourse(Course course)
 {
     using (var db = new EducationCourses())
     {
         return new List<Person>(db.SelectStudentsByCourseNo(course.ID));
     }
 }