Files
Assignment6/Controllers/HomeController.cs
Chris 30a86a5890
All checks were successful
Build and Push Docker Image / docker (push) Successful in 48s
reworking git structure
2026-04-08 12:30:29 +00:00

34 lines
794 B
C#

using System.Diagnostics;
using Example.Data;
using Microsoft.AspNetCore.Mvc;
using Example.Models;
namespace Example.Controllers;
public class HomeController : Controller
{
private readonly ILogger<HomeController> _logger;
// Added application db context as parameter
public HomeController(ILogger<HomeController> logger, ApplicationDbContext db)
{
_logger = logger;
}
public IActionResult Index()
{
return View();
}
public IActionResult Privacy()
{
return View();
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}