12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Bowin.Common.Linq.Entity;
- using EMIS.ViewModel.RetakeManage;
- using EMIS.ViewModel;
- using EMIS.Entities;
- namespace EMIS.CommonLogic.RetakeManage
- {
- public interface IRetakeOpenControlServices
- {
- /// <summary>
- /// 查询重修控制信息View
- /// </summary>
- /// <param name="openControlConditionView"></param>
- /// <param name="schoolyearID"></param>
- /// <param name="pageIndex"></param>
- /// <param name="pageSize"></param>
- /// <returns></returns>
- IGridResultSet<RetakeOpenControlView> GetRetakeOpenControlViewList(ConfiguretView openControlConditionView, Guid? schoolyearID, int pageIndex, int pageSize);
- /// <summary>
- /// 查询重修控制信息List
- /// </summary>
- /// <param name="openControlConditionView"></param>
- /// <param name="schoolyearID"></param>
- /// <returns></returns>
- List<RetakeOpenControlView> GetRetakeOpenControlViewList(ConfiguretView openControlConditionView, Guid? schoolyearID);
- /// <summary>
- /// 查询对应的重修控制信息
- /// </summary>
- /// <param name="retakeOpenControlID"></param>
- /// <returns></returns>
- RetakeOpenControlView GetRetakeOpenControlView(Guid? retakeOpenControlID);
- /// <summary>
- /// 查询对应的重修控制信息(根据重修学年学期)
- /// </summary>
- /// <param name="schoolyearID"></param>
- /// <returns></returns>
- RetakeOpenControlView GetRetakeOpenControlViewBySchoolyearID(Guid? schoolyearID);
- /// <summary>
- /// 重修控制编辑(新增、修改)
- /// </summary>
- /// <param name="retakeOpenControlView"></param>
- void RetakeOpenControlEdit(RetakeOpenControlView retakeOpenControlView);
- /// <summary>
- /// 重修控制删除
- /// </summary>
- /// <param name="openControlIDList"></param>
- void RetakeOpenControlDelete(IList<Guid?> openControlIDList);
- /// <summary>
- /// 查询重修学年学期对应的重修控制信息(根据对应重修学年学期查询)
- /// </summary>
- /// <param name="schoolyearID"></param>
- /// <returns></returns>
- ER_RetakeOpenControl GetRetakeOpenControl(Guid? schoolyearID);
- /// <summary>
- /// 查询重修学年学期对应的重修开放控制信息
- /// </summary>
- /// <param name="schoolyearID"></param>
- /// <returns></returns>
- string GetRetakeApplyDateTime(Guid? schoolyearID);
- }
- }
|