private void btSua_Click(object sender, EventArgs e) { string maloai, tenloai; maloai = txtMaloai.Text; tenloai = txtTenloai.Text; LoaiSanPhamDTO lsp = new LoaiSanPhamDTO(maloai, tenloai); try { int num = loaisanphamBUS.Update(lsp); if (num > 0) { MessageBox.Show("Sửa thành công", "Sửa", MessageBoxButtons.OK, MessageBoxIcon.Information); GridLoaiSP.DataSource = loaisanphamBUS.GetLoaiSP(); } else { MessageBox.Show("Không tìm được để sửa", "Sửa", MessageBoxButtons.OK, MessageBoxIcon.Information); } } catch (SqlException ex) { MessageBox.Show("Lỗi hệ thống\n" + ex.Message, "Sửa", MessageBoxButtons.OK, MessageBoxIcon.Information); } }