private void btnTimNV_Click(object sender, EventArgs e)
        {
            try
            {
                using (var k = new AppCode.QuanCafe())
                {
                    int kq = k.SoDong(int.Parse(txtMaNV.Text));

                    if (kq == -1)
                    {
                        MessageBox.Show("Không tìm thấy", "Thông báo ", MessageBoxButtons.OKCancel, MessageBoxIcon.Information);
                        return;
                    }
                    else
                    {
                        LoadThongTinNhanVien(kq);
                        return;
                    }
                }
            }
            catch
            {
                return;
            }
        }