コード例 #1
0
 public async Task <IActionResult> Index()
 {
     _logger.LogInformation("Chamando metodo Index com listagem de veiculos -> GET: Vehicles");
     return(View(await _vehiclesService.FindAllAsync()));;
 }