private void dateNgayBD_ValueChanged(object sender, EventArgs e)
        {
            if (isInsert)
            {
                txtMaLop.Text = LopHoc.AutoGenerateId(dateNgayBD.Value);
            }

            dateNgayKT.MinDate = dateNgayBD.Value;
            dateNgayKT.Value   = dateNgayBD.Value + TimeSpan.FromDays(180);
        }
 /// <summary>
 /// Nạp lớp lên giao diện
 /// </summary>
 /// <param name="lh"></param>
 public void LoadUI(LOPHOC lh)
 {
     if (lh == null)
     {
         txtMaLop.Text = LopHoc.AutoGenerateId(dateNgayBD.Value);
     }
     else
     {
         txtMaLop.Text         = lh.MaLop;
         txtTenLop.Text        = lh.TenLop;
         dateNgayBD.Value      = (DateTime)lh.NgayBD;
         dateNgayBD.Enabled    = cboKhoa.Enabled = isInsert;
         dateNgayKT.Value      = (DateTime)lh.NgayKT;
         cboKhoa.SelectedValue = lh.MaKH;
         rdMo.Checked          = (bool)lh.DangMo;
         rdDong.Checked        = !(bool)lh.DangMo;
     }
 }