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 FAuth.Models;
namespace FAuth.Controllers
{
    /// 
    /// Home控制器
    /// 
    public class HomeController:ControllerBase
    {
        /// 
        /// 生成控制器
        /// 
        /// 日志组件
        /// 服务集合
        public HomeController(ILogger logger,IServiceProvider service) : base(logger,service) {
        }
        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 });
        }
    }
}