Esempio n. 1
0
 private void button3_Click(object sender, EventArgs e)
 {
     pitt.createStudent(nametext.Text, int.Parse(idtext.Text));
     MessageBox.Show("Student Created");
     pitt.save();
 }
Esempio n. 2
0
 private void button3_Click(object sender, EventArgs e)
 {
     pitt.createCourse(nametext.Text, int.Parse(idtext.Text), int.Parse(bunifuMaterialTextbox1.Text), int.Parse(bunifuMaterialTextbox2.Text));
     MessageBox.Show("Course Created");
     pitt.save();
 }