private void btnSua_Click(object sender, EventArgs e) { try { BULLoaiHang bul = new BULLoaiHang(); bul.suaLoaiHang(new LoaiHang(int.Parse(txtMaLoaiHang.Text), txtTenLoaiHang.Text)); frmST.hienDanhSachLoaiHang(); MessageBox.Show("Sửa thành công", "Thành công", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); } catch (Exception) { MessageBox.Show("Thao tác thất bạt, dữ liệu sai", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Stop); } }
private void btnXoa_Click(object sender, EventArgs e) { BULHang bulHang = new BULHang(); if (bulHang.coLoaiHang(txtMaLoaiHang.Text)) { MessageBox.Show("Có dữ liệu khác đang chứa loại hàng này", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Stop); } else { try { BULLoaiHang bul = new BULLoaiHang(); bul.xoaLoaiHang(new LoaiHang(int.Parse(txtMaLoaiHang.Text))); frmST.hienDanhSachLoaiHang(); MessageBox.Show("Xóa thành công", "Thành công", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); } catch (Exception) { MessageBox.Show("Thao tác thất bạt, dữ liệu sai", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Stop); } } }