IStudentChangeServices.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Bowin.Common.Linq.Entity;
  6. using EMIS.Entities;
  7. using EMIS.ViewModel;
  8. using EMIS.ViewModel.StudentManage.StudentChange;
  9. using EMIS.CommonLogic.SystemServices;
  10. namespace EMIS.CommonLogic.StudentWeb.Change
  11. {
  12. public interface IStudentChangeServices : IBaseWorkflowServices<CF_DifferentDynamic>
  13. {
  14. /// <summary>
  15. /// 查询学生异动申请信息View
  16. /// </summary>
  17. /// <param name="configuretView"></param>
  18. /// <param name="userID"></param>
  19. /// <param name="pageIndex"></param>
  20. /// <param name="pageSize"></param>
  21. /// <returns></returns>
  22. IGridResultSet<StudentChangeView> GetStudentChangeViewGrid(ConfiguretView configuretView, Guid? userID, int pageIndex, int pageSize);
  23. /// <summary>
  24. /// 查询学生异动申请信息List
  25. /// </summary>
  26. /// <param name="configuretView"></param>
  27. /// <param name="userID"></param>
  28. /// <returns></returns>
  29. IList<StudentChangeView> GetStudentChangeViewList(ConfiguretView configuretView, Guid? userID);
  30. /// <summary>
  31. /// 查询对应的学生异动信息View
  32. /// </summary>
  33. /// <param name="studentChangeID"></param>
  34. /// <returns></returns>
  35. StudentChangeView GetStudentChangeView(Guid? studentChangeID);
  36. /// <summary>
  37. /// 编辑
  38. /// </summary>
  39. /// <param name="studentChangeView"></param>
  40. void StudentChangeEdit(StudentChangeView studentChangeView);
  41. /// <summary>
  42. /// 删除
  43. /// </summary>
  44. /// <param name="studentChangeIDs"></param>
  45. /// <returns></returns>
  46. bool StudentChangeDelete(List<Guid?> studentChangeIDs);
  47. /// <summary>
  48. /// 提交
  49. /// </summary>
  50. /// <param name="studentChangeIDs"></param>
  51. /// <param name="userID"></param>
  52. /// <param name="comment"></param>
  53. /// <returns></returns>
  54. string StudentChangeSubmit(List<Guid> studentChangeIDs, Guid userID, string comment = "");
  55. }
  56. }