TeachersThatTeachAllLessons() public method

public TeachersThatTeachAllLessons ( ) : ObjectResult
return ObjectResult
コード例 #1
0
 public System.Collections.ObjectModel.ObservableCollection<Model.Person> SelectTeachersThatTeachAllLessons()
 {
     using (var db = new EducationCourses())
     {
         return new ObservableCollection<Person>(db.TeachersThatTeachAllLessons());
     }
 }