using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using EMIS.CommonLogic.EvaluationManage; using EMIS.CommonLogic.SystemServices; namespace EMIS.Web.ServiceControllers.EvaluationManage { public class EvaluationServicesController : Controller { public IEvaluationEnterServices EvaluationEnterServices { get; set; } public IEvaluationControlServices EvaluationControlServices { get; set; } public ActionResult GetStudentEvaluationEnterViewList(Guid userID, int pageIndex, int pageSize) { var evaluationControl = EvaluationControlServices.GetEvaluationControlView(); return Json(EvaluationEnterServices.GetEvaluationEnterViewGrid(new ViewModel.ConfiguretView(), evaluationControl.SchoolyearID, userID, null, true, pageIndex, pageSize), JsonRequestBehavior.AllowGet); } } }