22 lines
459 B
C#
22 lines
459 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace PSTW_CentralSystem.Areas.Report.Controllers
|
|
{
|
|
[Area("Report")]
|
|
public class ReportingController : Controller
|
|
{
|
|
public IActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
public IActionResult InventoryReport()
|
|
{
|
|
return View();
|
|
}
|
|
public IActionResult InventoryReportManagement()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
}
|