private void btnXoa_Click(object sender, EventArgs e) { DataGridViewRow row = dataGVTheLoai.SelectedRows.Count >= 1 ? dataGVTheLoai.SelectedRows[0] : null; if (row != null) { int maTheLoai = Convert.ToInt32(row.Cells["colMaTL"].Value); string tenTheLoai = row.Cells["colTenTL"].Value.ToString(); string message = $"Bạn có muốn xóa thể loại {tenTheLoai} không ?"; string caption = "Xóa nhân viên"; if (MessageBox.Show(message, caption, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { if (TheLoaiDAO.DeleteTheLoai(maTheLoai)) { MessageBox.Show("Xóa thành công"); InitTheLoai(); } else { MessageBox.Show("Xóa không thành công"); } } } else { MessageBox.Show("Bạn chưa chọn thể loại để xóa"); } }
public static void DeleteTheLoai(string idTheLoai) { TheLoaiDAO.DeleteTheLoai(Int32.Parse(idTheLoai)); }