Exemple #1
0
        private void btnLuu_Click(object sender, EventArgs e)
        {
            if (them)
            {
                try
                {
                    BLMonHoc blMH = new BLMonHoc();
                    blMH.ThemMonHoc(this.txtMaMH.Text, this.txtTenMH.Text.TrimEnd(), (int)this.spinSoTC.Value, this.lookUpMaGV.Text, ref err);

                    LoadData();

                    XtraMessageBox.Show("Đã thêm xong!");
                }
                catch
                {
                    XtraMessageBox.Show("Không thêm được. Lỗi rồi!");
                }
            }
            else
            {
                BLMonHoc blMH = new BLMonHoc();
                blMH.CapNhatMonHoc(this.txtMaMH.Text, this.txtTenMH.Text.TrimEnd(), (int)this.spinSoTC.Value, this.lookUpMaGV.Text, ref err);

                LoadData();

                XtraMessageBox.Show("Đã sửa xong!");
            }
        }