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; }
public AddLecture(Print print, ErrorCheck errorCheck) { this.print = print; this.errorCheck = errorCheck; }
public Export(Print print) { this.print = print; }