public AddStudentForm(Controller.UserAccount ua, int stdID)
 {
     InitializeComponent();
     student = new Controller.Student
     {
         studentID = stdID
     };
     userAccount = ua;
 }
 public ViewStudentForm(Controller.UserAccount ua)
 {
     InitializeComponent();
     student     = new Controller.Student();
     userAccount = ua;
 }