IEducationSchedulingClassServices.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using EMIS.ViewModel.EducationManage;
  6. using Bowin.Common.Linq.Entity;
  7. using System.Linq.Expressions;
  8. using EMIS.Entities;
  9. using EMIS.ViewModel;
  10. namespace EMIS.CommonLogic.EducationManage
  11. {
  12. public interface IEducationSchedulingClassServices
  13. {
  14. IGridResultSet<EducationSchedulingClassScheduleView> GetEducationSchedulingClassView(ConfiguretView configuretView,
  15. Expression<Func<EM_EducationSchedulingClass, bool>> exp,
  16. Expression<Func<EducationSchedulingClassScheduleView, bool>> resultExp = null,
  17. Func<IQueryable<EducationSchedulingClassScheduleView>, Expression<Func<EducationSchedulingClassScheduleView, Guid?>>,
  18. IQueryable<EducationSchedulingClassScheduleView>> dataRangeFunc = null,
  19. int? pageIndex = null, int? pageSize = null);
  20. List<EducationSchedulingClassScheduleView> GetEducationSchedulingClassViewList(Guid schoolYearID, IList<Guid?> collegeIDList);
  21. List<EducationSchedulingClassStudentView> GetEducationSchedulingClassStudentViewList(Guid schoolYearID, IList<Guid?> collegeIDList);
  22. List<EducationSchedulingClassScheduleView> GetEducationSchedulingClassViewList(Guid schoolYearID, Guid classMajorID);
  23. List<EducationSchedulingClassScheduleView> GetDepartmentEducationSchedulingClassViewList(Guid schoolYearID, Guid departmentID, IList<int?> handleModeList);
  24. EducationSchedulingClassScheduleView GetEducationSchedulingClassView(Guid educationSchedulingClassID);
  25. }
  26. }