17 lines
445 B
C#
17 lines
445 B
C#
using System.Web.Mvc;
|
|
|
|
namespace Kreta.Web.Areas.Hianyzas.Controllers
|
|
{
|
|
//Note: kikapcsolva, mert jelenleg nincs használatban
|
|
|
|
//[MvcRoleClaimsAuthorize(true)]
|
|
//[MvcRolePackageAuthorize(KretaClaimPackages.Ellenorzo.ClaimValue)]
|
|
public class TantargyiMulasztasController : Controller
|
|
{
|
|
// GET: Hianyzas/TantargyiMulasztas
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
}
|