123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
- using Bowin.Common.Linq.Entity;
- using EMIS.ViewModel;
- using EMIS.ViewModel.EnrollManage.NewStudentManage;
- namespace EMIS.CommonLogic.EnrollManage.NewStudentManage
- {
- public interface INewStudentEnterServices
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- IGridResultSet<NewStudentView> GetNewStudentEnterViewGrid(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, int? gradeID, int? standardID,
- int? educationID, int? learningformID, string learnSystem, Guid? grademajorID, Guid? classmajorID, int? generalPurpose, int? generalExist, int? newStudentEnterStatus, int pageIndex, int pageSize);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- IList<NewStudentView> GetNewStudentEnterViewList(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, int? gradeID, int? standardID,
- int? educationID, int? learningformID, string learnSystem, Guid? grademajorID, Guid? classmajorID, int? generalPurpose, int? generalExist, int? newStudentEnterStatus);
-
-
-
-
-
- NewStudentView GetNewStudentEnterView(Guid? newStudentID);
-
-
-
-
-
-
- NewStudentView GetNewStudentEnterView(string examineeNum, string userName);
-
-
-
-
-
-
- void NewStudentEnterEdit(NewStudentView newStudentView, string photoUrl);
-
-
-
-
-
- bool NewStudentEnterDelete(List<Guid?> newStudentIDList);
-
-
-
-
- void DeletePhoto(Guid? newStudentID);
-
-
-
-
-
- bool PicDelete(List<Guid?> newStudentIDs);
-
-
-
-
-
- string NewStudentEnterCancelAssignCollege(List<Guid?> newStudentIDList);
-
-
-
-
-
-
-
-
- void NewStudentEnterPicImport(IList<string> photoPaths, string importPicType, out int? inCount, out int? errCount, out DataTable errDataTable);
-
-
-
-
-
-
-
-
-
- void NewStudentEnterDoubtImport(Dictionary<string, string> cellheader, out int? inCount, out int? upCount, out List<NewStudentView> errdataList, out int? errCount, string sourcePhysicalPath);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- IGridResultSet<NewStudentView> GetNewStudentEnterDoubtViewGrid(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, int? gradeID, int? standardID, int? educationID, int? learningformID, string learnSystem, int? isPhotoUrl, int pageIndex, int pageSize);
-
-
-
-
-
-
-
-
-
-
-
-
-
- IList<NewStudentView> GetNewStudentEnterDoubtViewList(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, int? gradeID, int? standardID, int? educationID, int? learningformID, string learnSystem, int? isPhotoUrl);
-
-
-
-
-
- string NewStudentEnterDoubtApprove(List<Guid?> newStudentIDList);
-
-
-
-
-
- string NewStudentEnterInit(List<Guid?> newStudentIDList);
-
-
-
-
-
-
-
- string NewStudentEnterAssignClass(List<Guid?> newStudentIDList, Guid? classmajorID);
-
-
-
-
-
-
- string NewStudentEnterAutoAssignClass(List<Guid?> newStudentIDList);
-
-
-
-
-
-
- string NewStudentEnterSubmit(List<Guid?> newStudentIDList);
- }
- }
|