Sign in

wms / wms_NouYaWmsN5 · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wms_NouYaWmsN5
  • WebMvc
  • Controllers
  • HomeController.cs
  • 首次提交
    17fb8ab7
    霍尔 authored
    2019-10-30 11:15:16 +0800  
    Browse Code »
HomeController.cs 474 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
using Infrastructure;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using System;
using WebApp;
using WebRepository;

namespace WebMvc
{
    public class HomeController : BaseController
    {
        public ActionResult Index()
        {
            return View();
        }

        public ActionResult Main()
        {
            return View();
        }

        public HomeController(IAuth authUtil) : base(authUtil)
        {
        }
    }
}