CourseWareController.cs 748 B

12345678910111213141516171819202122232425262728
  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 CourseWareController : Controller
  10. {
  11. //课件管理
  12. public ICourseWareServices ICourseWareServices { get; set; }
  13. public ActionResult List()
  14. {
  15. return View();
  16. }
  17. [HttpPost]
  18. public ActionResult List(int page, int rows,string CourseVideoName, DateTime? BeginTime, DateTime? EndTime)
  19. {
  20. var result = ICourseWareServices.GetCourseWareList(page, rows,CourseVideoName,BeginTime, EndTime);
  21. return Json(result);
  22. }
  23. }
  24. }