Exemplo n.º 1
0
        public IActionResult BuscarCarroPlaca(string placa)
        {
            if (string.IsNullOrWhiteSpace(placa))
            {
                listCarPlaca = _carroDAO.ListarCarros();
            }
            else
            {
                listCarPlaca = _carroDAO.ListCarPlaca(placa);
            }

            return(RedirectToAction("Index"));
        }