123456789101112131415161718192021222324252627 |
- using EMIS.CommonLogic.ProjectShareManage;
- using EMIS.ViewModel;
- using EMIS.Web.Controls;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace EMIS.Web.ServiceControllers.ShareRecord
- {
- public class ShareRecordServicesController : Controller
- {
- //
- // GET: /ShareRecordServices/
- public IShareRecordServices shareRecordServices { get; set; }
- public ActionResult GetShareRecordView(Guid userID, int pageIndex, int pageSize)
- {
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(null);
-
- //return base.Json(shareRecordServices.GetShareRecordViewGrid(configuretView, startTime, endTime, title, userID, (int)pararms.page, (int)pararms.rows));
- return Json(shareRecordServices.GetShareRecordViewGrid(configuretView, null, null, null, userID, pageIndex, pageSize), JsonRequestBehavior.AllowGet);
- }
- }
- }
|