private void thucThi()
        {
            if (check == 1 || check == 2)
            {
                int kt = kTraDLNhapVao();

                if (kt == 0)
                {
                    if (check == 1)
                    {
                        bool ktID = kTraTrungID();
                        if (!ktID)
                        {
                            if (gvBUS.themGiangVien(this.txtMaGV.Text, this.txtHoTen.Text, this.txtHocVi.Text,
                                                    this.txtDiaChi.Text, this.txtSDT.Text,
                                                    this.cbbThuocKhoa.SelectedValue.ToString()))
                            {
                                MessageBox.Show("Đã thêm xong!");
                                LoadData();
                            }
                            else
                            {
                                MessageBox.Show("Khong them duoc. Loi !!!", "THONG BAO", MessageBoxButtons.OK, MessageBoxIcon.Error);
                            }
                        }
                        else
                        {
                            MessageBox.Show("Mã Giảng Viên đã bị trùng.", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                        }
                    }
                    if (check == 2)
                    {
                        if (gvBUS.suaGiangVien(this.txtMaGV.Text, this.txtHoTen.Text, this.txtHocVi.Text,
                                               this.txtDiaChi.Text, this.txtSDT.Text,
                                               this.cbbThuocKhoa.SelectedValue.ToString()))
                        {
                            MessageBox.Show("Đã sửa xong!");
                            LoadData();
                        }
                        else
                        {
                            MessageBox.Show("Khong SUA duoc. Loi !!!", "THONG BAO", MessageBoxButtons.OK, MessageBoxIcon.Error);
                        }
                    }
                }
                else
                {
                    if (kt == 1)
                    {
                        MessageBox.Show("Mã Giảng Viên không được để trống.", "Cảnh Báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    }
                    else
                    {
                        if (kt == 2)
                        {
                            MessageBox.Show("Tên Giảng Viên không được để trống.", "Cảnh Báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                        }
                        else
                        {
                            MessageBox.Show("Số điện thoại nhập vào đã bị sai.", "Cảnh Báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                        }
                    }
                }
            }
            else
            {
                btnSua.Enabled         = true;
                btnXoa.Enabled         = true;
                dgcGiaoVien.DataSource = gvBUS.getGVTheoMaGV(this.txtMaGV.Text);
            }
        }