示例#1
0
        public IActionResult ShopeList2(string searchTrem)
        {
            ShopeList model = new ShopeList();

            model.Shopes = _shopeOperation.Search(searchTrem);
            return(View(model));
        }
示例#2
0
        public IActionResult ShopeList()
        {
            ShopeList model = new ShopeList();

            model.Shopes = _shopeOperation.GetAllShope();
            return(View(model));
        }