public IActionResult Delete(int Id, IFormCollection collection)
 {
     _gerenciadorVeiculo.Excluir(Id);
     return(RedirectToAction(nameof(Index)));
 }