private void BtnThem_Click(object sender, EventArgs e)
        {
            var f = new frmHistoryLearningDetail(pathHistoryLeaningDataFile, idStudent);

            if (f.ShowDialog() == DialogResult.OK)
            {
                // Tiến hành nạp lại dữ liệu
                updateTableHistoryLearning();
            }
        }
        private void BtnSua_Click(object sender, EventArgs e)
        {
            var history = bdsQuaTrinhHocTap.Current as HistoryLearning;

            if (history != null)
            {
                var f = new frmHistoryLearningDetail(pathHistoryLeaningDataFile, idStudent, history);
                if (f.ShowDialog() == DialogResult.OK)
                {
                    // Tiến hành nạp lại dữ liệu
                    updateTableHistoryLearning();
                }
            }
        }