Beispiel #1
0
        private void submit_button_Click(object sender, EventArgs e)
        {
            handleCourse course = new handleCourse(courseName_textBox.ToString(), null); // TDO : add coeficient from form

            // convert coef_numericUpDown to coeficient type
            course.submitGrades(null, null); //TDO : fine-tuning
        }
Beispiel #2
0
 private void submit_button_Click(object sender, EventArgs e)
 {
     handleCourse course = new handleCourse(courseName_textBox.ToString(),null); // TDO : add coeficient from form
                                                                                // convert coef_numericUpDown to coeficient type
     course.submitGrades(null, null); //TDO : fine-tuning
 }