public ErrorType SuaCTDT(string khoi, string mon, string heso)
        {
            ChuongTrinhDaoTaoAccess ct = new ChuongTrinhDaoTaoAccess();

            if (string.IsNullOrEmpty(khoi) || string.IsNullOrEmpty(mon) || string.IsNullOrEmpty(heso))
            {
                return(ErrorType.KI_TU_RONG);
            }

            return(ct.SuaCTDT(khoi, mon, Int32.Parse(heso)));
        }
        public bool SuaCTDT(string khoi, string mon, int heso)
        {
            ChuongTrinhDaoTaoAccess ct = new ChuongTrinhDaoTaoAccess();

            return(ct.SuaCTDT(khoi, mon, heso));
        }