19 lines
467 B
C#
19 lines
467 B
C#
using System.Web.Mvc;
|
|
using Kreta.Web.Security;
|
|
|
|
namespace Kreta.Web.Controllers
|
|
{
|
|
[MvcRoleClaimsAuthorize(true)]
|
|
public class WizardController : Controller
|
|
{
|
|
public ActionResult LoadWizardContent()
|
|
{
|
|
return PartialView("EditorTemplates/WizardPopUp");
|
|
}
|
|
|
|
public ActionResult LoadKozpontiOraWizardContent()
|
|
{
|
|
return PartialView("EditorTemplates/KozpontiOraWizardPopUp");
|
|
}
|
|
}
|
|
}
|