Add project files.

This commit is contained in:
login
2025-05-06 02:04:49 +07:00
parent b387f4e283
commit e1980fe6a2
333 changed files with 128684 additions and 0 deletions

View File

@ -0,0 +1,25 @@
using AppLibs.Libs;
using Microsoft.AspNetCore.Mvc;
namespace SysApp.Controllers
{
public class RoomsController : Controller
{
[PageInfor("8102", "Room List")]
public Task<IActionResult> Index()
{
return this.ViewAsync();
}
[PageInfor("8103", "Room List")]
public Task<IActionResult> RoomType()
{
return this.ViewAsync();
}
[PageInfor("8101", "Room List")]
public Task<IActionResult> Add()
{
return this.ViewAsync();
}
}
}