PSTW_CentralizeSystem/Areas/OTcalculate/Controllers/HodDashboardController.cs
2025-04-18 10:50:23 +08:00

27 lines
646 B
C#

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using PSTW_CentralSystem.Areas.OTcalculate.Models;
using PSTW_CentralSystem.DBContext;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace PSTW_CentralSystem.Areas.OTcalculate.Controllers
{
[Area("OTcalculate")]
[Authorize]
public class HodDashboardController : Controller
{
public IActionResult HodApproval()
{
return View();
}
public IActionResult OtReview()
{
return View();
}
}
}