| 1234567891011121314151617181920212223 |
- using Microsoft.AspNetCore.Authorization;
- using Microsoft.AspNetCore.Mvc;
- namespace Admin.NET.Web.Entry.Controllers
- {
- [AllowAnonymous]
- public class HomeController : Controller
- {
- //private readonly ISystemService _systemService;
- //public HomeController(ISystemService systemService)
- //{
- // _systemService = systemService;
- //}
- public IActionResult Index()
- {
- //ViewBag.Description = _systemService.GetDescription();
- return View();
- }
- }
- }
|