private void btnSave_Click(object sender, EventArgs e) { if (txtFacultyID.Text == "") { DevExpress.XtraEditors.XtraMessageBox.Show("Bạn chưa nhập Mã khoa", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else if (txtFacultyName.Text == "") { DevExpress.XtraEditors.XtraMessageBox.Show("Bạn chưa nhập Tên khoa", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else if (dteStartYear.EditValue == null) { DevExpress.XtraEditors.XtraMessageBox.Show("Bạn chưa chọn Ngày thành lập", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { _getData(); bool bresult = false; if (_IStatusForm == 1) { bresult = _Faculty.addNewFaculty(_FacultyModelNow); } else { bresult = _Faculty.updateCurrentFaculty(_FacultyModelNow); } if (!bresult) { DevExpress.XtraEditors.XtraMessageBox.Show("Lưu Thất Bại!", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { _lstLoadListFaculty(); _IStatusForm = 0; _setStatusForm(); DevExpress.XtraEditors.XtraMessageBox.Show("Lưu Thành Công!", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } } }