Exemplo n.º 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();
 }
Exemplo n.º 2
0
        private void btn_delete_Click(object sender, EventArgs e)
        {
            CProgramOutStandards cPOS = new CProgramOutStandards();
            var result = MessageBox.Show("Chắc chắn xóa?", "Thông báo", MessageBoxButtons.OKCancel);

            if (result == DialogResult.OK)
            {
                cPOS.Delete(subId, CDRId);
            }
            this.Dispose();
            UCProgramOutStandards uCProgramOutStandards = new UCProgramOutStandards(pnl_contain, subId, isAdmin);

            cMain.loadUC(pnl_contain, uCProgramOutStandards);
        }