Esempio n. 1
0
        public ActionResult GetGridList(GridParam gp)
        {
            var data = new
            {
                rows  = equipmentBLL.GetGridList(gp),
                total = gp.total
            };

            return(Content(data.ToJson()));
        }