private void btnXoaChucVu_Click(object sender, EventArgs e)
        {
            try
            {
                DialogResult result = MessageBox.Show("Bạn chắc chắn muốn xóa ??", "Xóa Chức vụ " + txtTenChucVu.Text, MessageBoxButtons.YesNo);

                switch (result)
                {
                case DialogResult.No:
                    break;

                case DialogResult.Yes:
                    ChucVuBUS ChucVuBUS = new ChucVuBUS();
                    ChucVuBUS.XoaChucVu(txtMaChucVu.Text);
                    MessageBox.Show("Xóa thành công");
                    Tai_Thong_Tin_Chuc_Vu();
                    break;

                default:
                    break;
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("Xóa thất bại - Lỗi :" + ex.ToString());
            }
        }