private void btnSave_Click(object sender, EventArgs e) { if (Them) { try { BLRap blRap = new BLRap(); blRap.ThemRap(this.txtMaRap.Text.Trim(), this.txtSoDayGhe.Text.Trim(), txtSoLuongGhe.Text.Trim(), txtLoaiRap.Text.Trim(), ref err); LoadData(); MessageBox.Show("Đã thêm xong!"); } catch (SqlException) { MessageBox.Show("Không thêm được. Lỗi rồi!"); } } else { try { BLRap blRap = new BLRap(); blRap.CapNhatRap(this.txtMaRap.Text.Trim(), this.txtLoaiRap.Text.Trim(), ref err); LoadData(); MessageBox.Show("Đã sửa xong!"); } catch (SqlException) { MessageBox.Show("Không sửa được. Lỗi rồi!"); } } }