PSTW_CentralizeSystem/Areas/OTcalculate/Controllers/HrDashboardController.cs
2025-03-24 00:07:33 +08:00

46 lines
939 B
C#

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")]
public class HrDashboardController : Controller
{
private readonly CentralSystemContext _context;
public HrDashboardController(CentralSystemContext context)
{
_context = context;
}
public IActionResult Rate()
{
return View();
}
public IActionResult OtApproval()
{
return View();
}
public IActionResult Settings()
{
return View();
}
public IActionResult Calendar()
{
return View();
}
}
}