28 lines
613 B
C#
28 lines
613 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace PSTW_CentralSystem.Areas.Inventory.Controllers
|
|
{
|
|
[Area("Inventory")]
|
|
//[Authorize(Policy = "RoleModulePolicy")]
|
|
public class MainController : Controller
|
|
{
|
|
// GET: Inventory
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public IActionResult SupplierRegistration()
|
|
{
|
|
return View();
|
|
}
|
|
public IActionResult ManifacturerRegistration()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
}
|
|
}
|