Пример #1
0
        public async Task <IActionResult> Index(int page = 1)
        {
            ViewBag.currentPage = page;
            int totalcout = StoreBLL.Cout();

            ViewBag.totalPage = TotalPage(totalcout);
            var ListStore = await StoreBLL.Get(numberPerPage, page);

            //var ListBrandFilter = await BrandBLL.Get(filter: p => p.Name.Contains());
            return(View(ListStore));
        }