protected void btn_Them_Click(object sender, EventArgs e)
        {
            NhanVienController sachCtl = new NhanVienController();

            NhanVienInfo info = layDuLieuForm();
            bool         kt   = sachCtl.InsertNhanVien(info);

            if (kt == true)

            {
                lblThongbao.Text = "Thêm thành công";
                getAllNhanVien();

                txtMa.Text  = "";
                txtTen.Text = "";
                txtNS.Text  = "";
                txtGT.Text  = "";
                txtDC.Text  = "";
                txtSDT.Text = "";
                txtMa.Focus();
            }
            else
            {
                lbTB.Text = "Thêm thất bại";
            }
        }