kreta/KretaWeb/Areas/Tanar/Controllers/NemNaplozottTanorakController.cs
2024-03-13 00:33:46 +01:00

19 lines
752 B
C#

using System.Web.Mvc;
using Kreta.BusinessLogic.Security;
using Kreta.Web.Areas.Tanar.Logic;
using Kreta.Web.Security;
namespace Kreta.Web.Areas.Tanar.Controllers
{
[MvcRoleClaimsAuthorize(true)]
[MvcRolePackageAuthorize(KretaClaimPackages.Tanar.ClaimValue)]
public class NemNaplozottTanorakController : Controller
{
public ActionResult Index(bool? csakAHelyettesiteseim = null, bool? helyettesitettOraimIs = null, bool? jovobeniOrakMegjelenitese = null)
{
var nemNaplozottTanorakSearchModel = NemNaplozottTanorakLogic.NemNaplozottTanorakSearch(csakAHelyettesiteseim, helyettesitettOraimIs, jovobeniOrakMegjelenitese);
return View("Index", nemNaplozottTanorakSearchModel);
}
}
}