Exemplo n.º 1
0
        //
        // GET: /Adm/Material/List

        public ActionResult List()
        {
            var pageIndex = CECRequest.GetQueryInt("page", 1);
            var list      = AdService.List(new AdSearchSetting()
            {
                PageIndex = pageIndex
            });

            ViewBag.List = list;

            return(View());
        }