예제 #1
0
        public DataTable ListStudentRegisterCurriculum_Sel_config(string CurriculumID, string GraduateLevelID, string StudyTypeID)
        {
            Staffdal  t  = new Staffdal();
            DataSet   ds = new DataSet();
            DataTable dt = new DataTable();

            ds = t.ListStudentRegisterCurriculum_Sel_config(CurriculumID, GraduateLevelID, StudyTypeID);
            if (ds.Tables.Count > 0)
            {
                dt = ds.Tables[0];
            }
            return(dt);
        }