123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.ViewModel.SchedulingManage.ScheduleApproval;
- using EMIS.CommonLogic.SystemServices;
- using EMIS.Entities;
- using EMIS.ViewModel.EducationSchedule;
- namespace EMIS.CommonLogic.SchedulingManage.ScheduleApproval
- {
- public interface ICollegeScheduleApprovalServices : IBaseWorkflowServices<ES_CollegeScheduleStatus>
- {
- Bowin.Common.Linq.Entity.IGridResultSet<CollegeScheduleApprovalView> GetCollegeScheduleApprovalViewGrid(Guid? SchoolyearID, Guid? collegeID, int? approvalStatus, int pageIndex, int pageSize);
- List<CollegeScheduleApprovalView> GetCollegeScheduleApprovalViewList(IList<CollegeSchoolyearView> collegeAndSchoolyearList, bool isNeedDataRange = true);
- bool Submit(List<Guid?> collegePriorityIDs, List<Guid?> collegeIDs, Guid schoolYearID);
- bool Approve(List<Guid> collegeScheduleStatusIDs);
- bool ReturnBack(List<Guid> collegePriorityIDs);
- }
- }
|