Exemplo n.º 1
0
        // GET: User
        public async Task <IActionResult> Index([FromQuery] string search = "")
        {
            IEnumerable <Core.Customer> customers = instrumentRepository.GetCustomers(search);

            return(View(customers));
        }