Beispiel #1
0
 public MainController()
 {
     this.chapter   = new CChapters();
     this.detail    = new CDetailedOutline();
     this.course    = new CCourseGoals();
     this.subject   = new CSubject();
     this.exam      = new CExam();
     this.ppgd      = new CPPGD();
     this.selfstudy = new CSelfStudy();
     this.standards = new CProgramOutStandards();
 }
Beispiel #2
0
        private void btn_delete_Click(object sender, EventArgs e)
        {
            CChapters cChapters = new CChapters();
            var       result    = MessageBox.Show("Chắc chắn xóa?", "Thông báo", MessageBoxButtons.OKCancel);

            if (result == DialogResult.OK)
            {
                cChapters.Delete(subId, chapterId);
            }
            this.Dispose();
            UCChapters uCChapters = new UCChapters(pnl_contain, subId, isAdmin);

            cMain.loadUC(pnl_contain, uCChapters);
        }