12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- using EMISOnline.Entities;
- using EMISOnline.CommonLogic.EducationalServices;
- using System.Linq.Expressions;
- namespace EMISOnline.Web.Controllers.Manage
- {
- public class CollegeController : Controller
- {
- //学院管理
- public ICollegeServices ICollegeServices { get; set; }
- public ActionResult List()
- {
- return View();
- }
- [HttpPost]
- public ActionResult List(int page, int rows, string CollegeName, string CollegeNo)
- {
- var result = ICollegeServices.GetCollegeList(page, rows, CollegeName, CollegeNo);
- return Json(result);
- }
- }
- }
|