TeachingPlanController.cs 774 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. using EMISOnline.CommonLogic.EducationalServices;
  7. namespace EMISOnline.Web.Controllers.Manage
  8. {
  9. public class TeachingPlanController : Controller
  10. {
  11. //教学计划
  12. public ITeachingPlanServices ITeachingPlanServices { get; set; }
  13. public ActionResult List()
  14. {
  15. return View();
  16. }
  17. [HttpPost]
  18. public ActionResult List(int page, int rows, string GrademajorName, string FacultymajorName, string CourseName)
  19. {
  20. var result = ITeachingPlanServices.GetTeachingPlanList(page, rows, GrademajorName, FacultymajorName, CourseName);
  21. return Json(result);
  22. }
  23. }
  24. }