using Microsoft.AspNetCore.Mvc; using ReportingServices.UI.Models; using System.Diagnostics; namespace ReportingServices.UI.Controllers; public class HomeController : Controller { private readonly ILogger _logger; public HomeController(ILogger logger) => _logger = logger; public IActionResult Index() { _logger.LogInformation("Starting Index Page"); return View(); } [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] public IActionResult Error() => View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); }