private void buttonNaSledKurs_Click(object sender, EventArgs e)
 {
     //выполнить перевод
     student1.PerevestiNaSledKurs();
     //вывести на форму
     numericUpDownKurs.Value = student1.Kurs;
     textBoxStudentInfo.Text = student1.ToString();
 }