12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- using EMISOnline.CommonLogic.EducationalServices;
- namespace EMISOnline.Web.Controllers.Manage
- {
- public class CourseWareController : Controller
- {
- //课件管理
- public ICourseWareServices ICourseWareServices { get; set; }
- public ActionResult List()
- {
- return View();
- }
- [HttpPost]
- public ActionResult List(int page, int rows,string CourseVideoName, DateTime? BeginTime, DateTime? EndTime)
- {
- var result = ICourseWareServices.GetCourseWareList(page, rows,CourseVideoName,BeginTime, EndTime);
- return Json(result);
- }
- }
- }
|