20 lines
419 B
C#
20 lines
419 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 ItemMovementController : Controller
|
|
{
|
|
// GET: Inventory
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
}
|
|
}
|