예제 #1
0
 public CourseCatalog()
 {
     _data   = new ObservableCollection <Course>();
     _source = new WebAPISource <Course>("http://localhost:2726", "Courses");
 }
예제 #2
0
 public TeacherCatalog()
 {
     _data   = new ObservableCollection <Teacher>();
     _source = new WebAPISource <Teacher>("http://localhost:2726", "Teachers");
 }
예제 #3
0
 public StudentCatalog()
 {
     _data   = new ObservableCollection <Student>();
     _source = new WebAPISource <Student>("http://localhost:2726", "Students");
 }