Exemplo n.º 1
0
 public static DialogResult AddNewStudent()
 {
     using (var frm = new FormStudent())
     {
         return(frm.ShowDialog());
     }
 }
Exemplo n.º 2
0
 public static DialogResult UpdateStudent(long studentId)
 {
     using (var frm = new FormStudent())
     {
         frm.SelectedStudent = Common.GetStudent(studentId);
         return(frm.ShowDialog());
     }
 }