using ImplementerApp.Models; using Microsoft.AspNetCore.Mvc; using System.Diagnostics; using BusinessLogic.BusinessLogic; using Contracts.BusinessLogicsContracts; using Contracts.ViewModels; namespace ImplementerApp.Controllers { public class HomeController : Controller { private readonly ILogger _logger; private readonly IDetailLogic _detailLogic; private readonly IImplementerLogic _userLogic; private readonly IProductLogic _productLogic; private readonly IProductionLogic _productionLogic; public HomeController(ILogger logger) { _logger = logger; } public IActionResult Index() { return View(); } public IActionResult Enter() { return View(); } public IActionResult Register() { return View(); } public IActionResult IndexDetail() { return View(new List()); } public IActionResult CreateDetail() { return View(); } public IActionResult IndexProduct() { return View(new List()); } public IActionResult CreateProduct() { return View(); } public IActionResult IndexProduction() { return View(new List()); } public IActionResult CreateProduction() { 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 }); } } }