123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.ViewModel.EnrollManage.NewStudentManage;
- namespace EMIS.ExtensionLogic.ServiceLogic.EnrollManage
- {
- public class NewStudentCollegeServices : EMIS.CommonLogic.EnrollManage.NewStudentManage.NewStudentCollegeServices
- {
-
-
-
-
-
-
-
-
-
-
- public override void NewStudentCollegeImport(Dictionary<string, string> cellheader, out int? inCount, out int? upCount, out List<NewStudentView> errdataList, out int? errCount, string sourcePhysicalPath)
- {
- throw new Exception("招生信息导入配置有误(根据个性化要求进行配置),请检查");
- }
- }
- }
|