using Microsoft.AspNetCore.Mvc; using RankingService; using RankingWebApp.Models; using System.Diagnostics; namespace RankingWebApp.Controllers { public class RankingController : Controller { private readonly ILogger _logger; private readonly RankingClient _client; public RankingController(ILogger logger) { _logger = logger; _client = new RankingClient("http://localhost:5072", new HttpClient()); } public async Task Index() { return View((await _client.RankingsAsync()).ToList()); } [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] public IActionResult Error() { return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); } } }