| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Linq;
- using System.Threading.Tasks;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.Extensions.Logging;
- using GreenTree.Strohrmann.ERP.Web.Models;
- using GreenTree.Strohrmann.ERP.Domain.Model;
- using Microsoft.AspNetCore.Authorization;
- using Microsoft.AspNetCore.Authentication.Cookies;
- using GreenTree.Strohrmann.ERP.Services.Notification;
- using Microsoft.Extensions.Options;
- using GreenTree.Strohrmann.ERP.Web.Configuration;
- namespace GreenTree.Strohrmann.ERP.Web.Controllers
- {
- public class HomeController : Controller
- {
- private readonly ILogger<HomeController> _logger;
- private readonly INotificationService _mailNotificationService;
- public HomeController(
- ILogger<HomeController> logger,
- INotificationService mailNotificationService,
- IOptionMonitoringService optionMonitoringService)
- {
- _logger = logger;
- _mailNotificationService = mailNotificationService;
- }
- [Authorize]
- public IActionResult Index()
- {
- return View();
- }
- [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
- public IActionResult Error()
- {
- return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
- }
- }
- }
|