private void btnThem_Click(object sender, EventArgs e)
        {
            if (txtTenNhanVien.Text.Trim() != "" && txtUsername.Text.Trim() != "" && txtUsername.Text.Trim() != "")
            {
                int type = 0;
                if (rdbtnNVQuanTri.Checked)
                {
                    type = 0;
                }
                if (rdbtnNVBanVe.Checked)
                {
                    type = 1;
                }
                try
                {
                    dtoNhanVien = new DTO_NhanVien(txtMaNhanVien.Text, txtTenNhanVien.Text, txtUsername.Text, txtPassword.Text, type);
                    if (busNhanVien.Add(dtoNhanVien))
                    {
                        MessageBox.Show("Thêm thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    }
                    else
                    {
                        MessageBox.Show("Thêm không thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    }
                }

                catch (Exception a)
                {
                    MessageBox.Show("Thêm không thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
                finally
                {
                    TaoLai();
                }
            }
            else
            {
                MessageBox.Show("Vui lòng nhập đầy đủ thông tin!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }