private void btnXuat_Click(object sender, EventArgs e)
        {
            if (dgvPhieuKham.Rows.Count < 1 || dgvPhieuKham.CurrentCellAddress.Y < 0)
            {
                return;
            }

            try
            {
                if (ttIndex.id < 1)
                {
                    return;
                }

                Int64 re = ttBUS.Insert(ttIndex);

                if (re > 0)
                {
                    LoadData();
                    MessageBox.Show("Thành công", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
                else
                {
                    if (re == -2)
                    {
                        MessageBox.Show("Thông tin đã được thanh toán!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    }
                    else
                    {
                        MessageBox.Show("Không thành công! Vui lòng thực hiện lại", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("Có lỗi xãy ra vui lòng kiểm tra lại!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }