Exemplo n.º 1
0
        public ActionResult SortByStores()
        {
            ViewBag.stores = StoreRepo.GetAll().Select(x => new SelectListItem()
            {
                Text  = x.Name,
                Value = x.Id.ToString(),
            }).ToList();

            return(View());
        }