public StudentInformation(int studyCoachID, string study, Student student, StudyCourse studyCourse) { this.studyCoachID = studyCoachID; this.study = study; this.student = student; this.studyCourse = studyCourse; InitializeComponent(); }
private void SelectStudentButton_Click(object sender, EventArgs e) { Student student = SelectStudent(FirstNameTextBox.Text); studyCourse = new StudyCourse(studyCourse.ShowStudyCourse(), studyCourse.GetStudyCourseStatus(), studyCourse.GetStudyCourseNotes()); StudentInformation studentInformation = new StudentInformation(1, study, student, studyCourse); studentInformation.Show(); this.Hide(); }
public EditSubscribedModules(StudyCourse studyC) { this.studyC = studyC; InitializeComponent(); }