20 lines
506 B
C#
20 lines
506 B
C#
using System.Web.Mvc;
|
|
|
|
namespace Kreta.Web.Areas.Feljegyzes
|
|
{
|
|
public class FeljegyzesAreaRegistration : AreaRegistration
|
|
{
|
|
|
|
public override string AreaName => "Feljegyzes";
|
|
|
|
public override void RegisterArea(AreaRegistrationContext context)
|
|
{
|
|
context.MapRoute(
|
|
"Feljegyzes_default",
|
|
"Feljegyzes/{controller}/{action}/{id}",
|
|
new { action = "Index", id = UrlParameter.Optional }
|
|
);
|
|
}
|
|
|
|
}
|
|
}
|