Esempio n. 1
0
        public IActionResult PlanList(int page = 1, int size = 20, string keyword = null, bool?status = null)
        {
            var model = new ActPlanListModel();

            model.Plans = DefaultStorage.ActPlanPagedList(page, size, keyword, status);
            return(View(model));
        }