コード例 #1
0
ファイル: Controller.cs プロジェクト: ArneSips/Studiepunten
 public void AdjustStudentStudierichting(StudentStudierichting studentstudierichting, int id)
 {
     _persistController.adjustStudentStudierichting(studentstudierichting, id);
     _studentStudierichtingRepository.StudentStudierichtingLijst = _persistController.getStudentStudierichting();
 }
コード例 #2
0
 //constructor
 //methods
 public void addStudentStudierichtingToRepository(StudentStudierichting studentStudierichting)
 {
     _studentStudierichtingLijst.Add(studentStudierichting);
 }
コード例 #3
0
ファイル: Controller.cs プロジェクト: ArneSips/Studiepunten
 public void addStudentStudierichting(StudentStudierichting studentstudierichting)
 {
     _persistController.addStudentStudierichting(studentstudierichting);
     _studentStudierichtingRepository.StudentStudierichtingLijst = _persistController.getStudentStudierichting();
 }