init
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System.Web.Http;
|
||||
using System.Web.Mvc;
|
||||
using Kreta.BusinessLogic.Security;
|
||||
using Kreta.Web.Areas.Hianyzas.Models;
|
||||
using Kreta.Web.Controllers.Logic;
|
||||
using Kreta.Web.Security;
|
||||
|
||||
namespace Kreta.Web.Areas.Hianyzas.Controllers
|
||||
{
|
||||
[MvcRoleClaimsAuthorize(true)]
|
||||
[MvcRolePackageDenyAuthorize(KretaClaimPackages.IsOnlyAlkalmozott.ClaimValue)]
|
||||
[MvcRolePackageAuthorize(KretaClaimPackages.Ellenorzo.ClaimValue)]
|
||||
public class InformaciokIgazolasokController : Controller
|
||||
{
|
||||
// GET: Hianyzas/InformaciokIgazolasok
|
||||
public ActionResult Index()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
public ActionResult ExportIgazolasok([FromUri] InformaciokIgazolasSearchModel data)
|
||||
{
|
||||
return CommonExportLogic.ExportInformaciokIgazolas(data);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user