12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.CommonLogic.SystemServices;
- using EMIS.Entities;
- using Bowin.Common.Linq.Entity;
- using EMIS.ViewModel.RetakeManage;
- using EMIS.ViewModel;
- using EMIS.ViewModel.EducationManage;
- namespace EMIS.CommonLogic.RetakeManage
- {
- public interface IRetakePlanStudentServices : IBaseWorkflowServices<ER_RetakePlanStudent>
- {
- List<RetakeStudentListView> GetRetakeExcelList(ViewModel.ConfiguretView retakePlanConditionView, Guid? schoolyearID, Guid? collegeID, int? year, int? standardID, Guid? classmajorID,bool? isNoArrear,int? learningformID,int? education,string LearnSystem);
- IGridResultSet<ViewModel.RetakeManage.RetakeStudentListView> GetRetakeStudentDetailListView(Guid? userID, Guid? schoolyearID, int pageIndex, int pageSize);
- IGridResultSet<RetakeStudentListView> GetRetakeStudentListViewList(ConfiguretView retakePlanConditionView,
- Guid? schoolyearID, Guid? collegeID, int? year, int? standardID, Guid? classmajorID, bool? isNoArrear,int? learningformID,int? education,string LearnSystem, int pageIndex, int pageSize);
- List<RetakeStudentListView> GetRetakeStudentListViewList(ConfiguretView retakePlanConditionView,
- Guid? schoolyearID, Guid? collegeID, int? year, int? standardID, Guid? classmajorID, bool? isNoArrear);
- void ChargePush(IList<Guid?> userIDList);
- void DeleteStudent(IList<Guid?> userIDList);
- void AddStudent(Guid userID);
- List<RetakeStudentApplyView> GetRetakeStudentApplyViewStudentList(Guid userID);
- List<EducationMissionImportClassView> GetEducationMissionImportClassViewList(Guid? coursematerialID);
- void Submit(Guid retakePlanStudentID, Guid? educationMissionID);
- void CheckCanSubmit(Guid retakePlanStudentID);
- IGridResultSet<RetakeStudentApproveView> GetRetakeStudentApproveViewList(ConfiguretView retakePlanConditionView,
- Guid? schoolyearID, Guid? collegeID, int? year, int? standardID, Guid? classmajorID,int? learningformID, int? education,string LearnSystem, int pageIndex, int pageSize);
- List<RetakeStudentApproveView> GetRetakeStudentApproveViewList(ConfiguretView retakePlanConditionView, IList<Guid?> retakePlanStudentIDList,
- Guid? schoolyearID, Guid? collegeID, int? year, int? standardID, Guid? classmajorID);
- void OnApproveEnd(Guid? retakePlanStudentID, Guid? userID);
- IGridResultSet<RetakeStudentApproveView> GetFinalRetakeStudentApproveViewList(ConfiguretView retakePlanConditionView,
- Guid? schoolyearID, Guid? collegeID, int? year, int? standardID, Guid? classmajorID,int? learningformID, int? education,string LearnSystem, int pageIndex, int pageSize);
- List<RetakeStudentApproveView> GetFinalRetakeStudentApproveViewList(ConfiguretView retakePlanConditionView, IList<Guid?> retakePlanStudentIDList,
- Guid? schoolyearID, Guid? collegeID, int? year, int? standardID, Guid? classmajorID, int? learningformID, int? education, string LearnSystem);
- }
- }
|