Beispiel #1
0
 public InterestingLecture(Menu menu, List <LectureVO> interestingLectureList, List <LectureVO> lectureList, AddLecture addLecture, JoinLecture joinLecture, RemoveLecture removeLecture, SearchLecture searchLecture, Print print, ErrorCheck errorCheck)
 {
     this.menu = menu;
     this.interestingLectureList = interestingLectureList;
     this.lectureList            = lectureList;
     this.addLecture             = addLecture;
     this.joinLecture            = joinLecture;
     this.removeLecture          = removeLecture;
     this.searchLecture          = searchLecture;
     this.print      = print;
     this.errorCheck = errorCheck;
 }
Beispiel #2
0
 public AddLecture(Print print, ErrorCheck errorCheck)
 {
     this.print      = print;
     this.errorCheck = errorCheck;
 }
Beispiel #3
0
 public Export(Print print)
 {
     this.print = print;
 }