private void btnCapNhatQuyDinh_Click(object sender, EventArgs e) { List <ThamSoDTO> lst = new List <ThamSoDTO>(); ThamSoDTO ts = new ThamSoDTO(); lst = ThamSoBUS.LayThongTinTS(); if (cmbThamSo.Text == "Số lượng khách tối đa") { ts.SLKhachToiDa = Convert.ToInt32(txtGiaTri.Text); if (ThamSoBUS.CapNhatTSSoKhachToiDa(ts) == true) { MessageBox.Show("Cập nhập thành công số khách tối đa", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } } if (cmbThamSo.Text == "Hệ số") { ts.HeSo = Convert.ToDouble(txtGiaTri.Text); if (ThamSoBUS.CapNhatTSHeSo(ts) == true) { MessageBox.Show("Cập nhập hệ số thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } } if (cmbThamSo.Text == "Phụ thu") { ts.PhuThu = Convert.ToDouble(txtGiaTri.Text); if (ThamSoBUS.CapNhatTSPhuThu(ts) == true) { MessageBox.Show("Cập nhập phụ thu thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } } if (cmbThamSo.Text == "Loại phòng A") { string lp = "A"; ts.DonGia = Convert.ToDecimal(txtGiaTri.Text); if (ThamSoBUS.CapNhatTSDonGia(ts, lp) == true) { MessageBox.Show("Cập nhập giá phòng thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Lỗi hệ thống hoặc nhập sai", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } } if (cmbThamSo.Text == "Loại phòng B") { string lp1 = "B"; ts.DonGia = Convert.ToDecimal(txtGiaTri.Text); if (ThamSoBUS.CapNhatTSDonGia(ts, lp1) == true) { MessageBox.Show("Cập nhập giá phòng thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Lỗi hệ thống hoặc nhập sai", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } } if (cmbThamSo.Text == "Loại phòng C") { string lp2 = "C"; ts.DonGia = Convert.ToDecimal(txtGiaTri.Text); if (ThamSoBUS.CapNhatTSDonGia(ts, lp2) == true) { MessageBox.Show("Cập nhập giá phòng thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Lỗi hệ thống hoặc nhập sai", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } } }