Пример #1
0
 public StudentInformation(int studyCoachID, string study, Student student, StudyCourse studyCourse)
 {
     this.studyCoachID = studyCoachID;
     this.study        = study;
     this.student      = student;
     this.studyCourse  = studyCourse;
     InitializeComponent();
 }
Пример #2
0
        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();
 }