Reorganized project structure to separate backend process from frontend process.
This commit is contained in:
28
ReportingServices.UI/Controllers/HomeController.cs
Normal file
28
ReportingServices.UI/Controllers/HomeController.cs
Normal file
@ -0,0 +1,28 @@
|
||||
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()
|
||||
{
|
||||
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user