123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.ViewModel.ExaminationApply;
- using EMIS.ViewModel;
- namespace EMIS.CommonLogic.ExaminationApply
- {
- public interface IOpenControlServices
- {
- Bowin.Common.Linq.Entity.IGridResultSet<OpenControlView> GetOpenControlViewList(ConfiguretView openControlView, Guid? examinationTypeID, Guid? examinationSubjectID,
- int? yearNum, int? studentType, int pageIndex, int pageSize);
- IList<OpenControlView> GetOpenControlViewList(ConfiguretView openControlView, Guid? examinationTypeID, Guid? examinationSubjectID,
- int? yearNum, int? studentType);
- OpenControlView GetOpenControlViewInfo(Guid? openControlID);
- void Save(OpenControlView openControlView);
- void Delete(IList<Guid?> openControlID);
- List<string> GetStudentType(Guid? openControlID);
- }
- }
|