123456789101112131415161718192021222324252627282930 |
- 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 StudentsController : Controller
- {
- //学生信息
- public IStudentsServices IStudentsServices { get; set; }
- public ActionResult List()
- {
- return View();
- }
- [HttpPost]
- public ActionResult List(int page, int rows, string LoginID, string Name, int? StudentStatus,
- string Schoolyear, string StandardName)
- {
- var result = IStudentsServices.GetStudentList(page, rows, LoginID, Name, StudentStatus, Schoolyear, StandardName);
- return Json(result);
- }
- }
- }
|