2023-01-12 13:19:05 -07:00

21 lines
664 B
C#

using Microsoft.AspNetCore.Mvc;
using ReportingServices.UI.Models;
using System.Diagnostics;
namespace ReportingServices.UI.Controllers;
public class HomeController : Controller
{
private readonly ILogger<HomeController> _logger;
public HomeController(ILogger<HomeController> 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 });
}