public CreateStudentForm() { InitializeComponent(); this.Business = new StudentManagement(); this.btnSave.Click += btnSave_Click; this.btnCancel.Click += btnCancel_Click; }
public IndexStudentForm() { InitializeComponent(); this.Business = new StudentManagement(); this.Load += IndexStudentForm_Load; this.btnCreate.Click += btnCreate_Click; this.btnDelete.Click += btnDelete_Click; this.grdStudents.DoubleClick += grdStudents_DoubleClick; }
public UpdateStudentForm(int id) { this.Business = new StudentManagement(); this.StudentId = id; InitializeComponent(); this.btnCancel.Click += btnCancel_Click; this.btnSave.Click += btnSave_Click; this.Load += UpdateStudentForm_Load; }