IReentryServices.cs 865 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using EMIS.CommonLogic.SystemServices;
  6. using EMIS.Entities;
  7. using Bowin.Common.Linq.Entity;
  8. using EMIS.ViewModel.DifferentDynamic;
  9. using EMIS.ViewModel;
  10. namespace EMIS.CommonLogic.Students
  11. {
  12. public interface IReentryServices : IBaseWorkflowServices<CF_DifferentDynamic>
  13. {
  14. IGridResultSet<StudentReentryView> GetStudentReentryViewGrid(ConfiguretView configuretView, Guid? returnSchoolyearID, Guid? campusID,
  15. Guid? collegeID, int? education, int? year, int? standard, int? learningform, int pageIndex, int pageSize);
  16. List<StudentReentryView> GetStudentReentryViewList(ConfiguretView configuretView, Guid? returnSchoolyearID, Guid? campusID,
  17. Guid? collegeID, int? education, int? year, int? standard, int? learningform);
  18. }
  19. }