private void btnSuaMH_Click(object sender, EventArgs e)
        {
            try
            {
                if (txtMaMH.Text == "" || txtTenMH.Text == "" || txtSoTietHoc.Text == "" || txtTongSoTiet.Text == "" || txtMaGVMH.Text == "")
                {
                    MessageBox.Show("Phải Nhập đủ Thông Tin");
                }

                else if (txtMaMH.Text != "")
                {
                    MonHocDTO monHoc = new MonHocDTO()
                    {
                        MaMH       = txtMaMH.Text,
                        TenMH      = txtTenMH.Text,
                        SoTiet     = txtSoTietHoc.Text,
                        TongSoTiet = txtTongSoTiet.Text,
                        MaGV       = txtMaGVMH.Text
                    };
                    monHoc_bll.UpdateMonHoc(monHoc);
                    this.btnDanhSachMH_Click(null, null);
                }
                else
                {
                    MessageBox.Show("Hãy Nhập Thông Tin Vào Box ...", "Thông báo");
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("Có Lỗi :" + ex.Message);
            }
        }