Exemplo n.º 1
0
        // GET: Stores
        public async Task <IActionResult> Index([FromQuery] string search = "")
        {
            IEnumerable <Core.Store> stores = instrumentRepository.GetStores(search);

            return(View(stores));
        }