This commit is contained in:
2025-06-04 14:17:32 +07:00
parent 4c953f7efb
commit 5beb66f11a
257 changed files with 72800 additions and 2 deletions

View File

@ -0,0 +1,28 @@
using AppLibs.Libs;
using ManagementApp.Models;
using Microsoft.AspNetCore.Mvc;
using System.Diagnostics;
namespace ManagementApp.Controllers
{
public class HomeController : Controller
{
private readonly ILogger<HomeController> _logger;
public HomeController(ILogger<HomeController> logger)
{
_logger = logger;
}
[PageInfor("1000", "Home")]
public Task<IActionResult> Index()
{
return this.ViewAsync();
}
public IActionResult Privacy()
{
return View();
}
}
}