123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Bowin.Common.Linq.Entity;
- using EMIS.Entities;
- using EMIS.ViewModel;
- using EMIS.ViewModel.StudentManage.StudentChange;
- using EMIS.CommonLogic.SystemServices;
- namespace EMIS.CommonLogic.StudentWeb.Change
- {
- public interface IStudentChangeServices : IBaseWorkflowServices<CF_DifferentDynamic>
- {
-
-
-
-
-
-
-
-
- IGridResultSet<StudentChangeView> GetStudentChangeViewGrid(ConfiguretView configuretView, Guid? userID, int pageIndex, int pageSize);
-
-
-
-
-
-
- IList<StudentChangeView> GetStudentChangeViewList(ConfiguretView configuretView, Guid? userID);
-
-
-
-
-
- StudentChangeView GetStudentChangeView(Guid? studentChangeID);
-
-
-
-
- void StudentChangeEdit(StudentChangeView studentChangeView);
-
-
-
-
-
- bool StudentChangeDelete(List<Guid?> studentChangeIDs);
-
-
-
-
-
-
-
- string StudentChangeSubmit(List<Guid> studentChangeIDs, Guid userID, string comment = "");
- }
- }
|