IOpenControlServices.cs 918 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using EMIS.ViewModel.ExaminationApply;
  6. using EMIS.ViewModel;
  7. namespace EMIS.CommonLogic.ExaminationApply
  8. {
  9. public interface IOpenControlServices
  10. {
  11. Bowin.Common.Linq.Entity.IGridResultSet<OpenControlView> GetOpenControlViewList(ConfiguretView openControlView, Guid? examinationTypeID, Guid? examinationSubjectID,
  12. int? yearNum, int? studentType, int pageIndex, int pageSize);
  13. IList<OpenControlView> GetOpenControlViewList(ConfiguretView openControlView, Guid? examinationTypeID, Guid? examinationSubjectID,
  14. int? yearNum, int? studentType);
  15. OpenControlView GetOpenControlViewInfo(Guid? openControlID);
  16. void Save(OpenControlView openControlView);
  17. void Delete(IList<Guid?> openControlID);
  18. List<string> GetStudentType(Guid? openControlID);
  19. }
  20. }