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 TeachingPlanController : Controller { //教学计划 public ITeachingPlanServices ITeachingPlanServices { get; set; } public ActionResult List() { return View(); } [HttpPost] public ActionResult List(int page, int rows, string GrademajorName, string FacultymajorName, string CourseName) { var result = ITeachingPlanServices.GetTeachingPlanList(page, rows, GrademajorName, FacultymajorName, CourseName); return Json(result); } } }