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

            model.Keyword   = keyword;
            model.Countries = DefaultStorage.CountryPagedList(page, size, keyword, status);
            return(View(model));
        }