private void btnThemLoai_Click(object sender, EventArgs e) { try { //demo loi bong ma if (mtrTH3_LOI.Checked) { int kq = XuLyDuLieu.ThucThiThemXoaSua("SP_WRITELOAI_TH3 '" + txtTenLoai.Text + "'"); if (kq != 0) { MessageBox.Show("Thêm tành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); LoadDSDoUong(); return; } else { MessageBox.Show("Thêm that bai", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } } if (mtrTH3_SuaLoi.Checked) { int kq = XuLyDuLieu.ThucThiThemXoaSua("SP_WRITELOAI_TH3 '" + txtTenLoai.Text + "'"); if (kq != 0) { MessageBox.Show("Thêm tành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); LoadDSDoUong(); return; } else { MessageBox.Show("Thêm that bai", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } } using (var k = new AppCode.QuanCafe()) { var o = new LoaiDoUong() { // IDLoai=int.Parse(txt1MaLoai.Text), TenLoai = txtTenLoai.Text, }; var kq = k.ThemLoaiDU(o); if (kq == true) { LoadDSLoai(); MessageBox.Show("Thêm thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } else { MessageBox.Show("Thêm thất bại", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } } } catch { return; } }