21 lines
558 B
C#
21 lines
558 B
C#
using System.Web.Mvc;
|
|
|
|
namespace Kreta.Web.Areas.Felhasznalok
|
|
{
|
|
public class FelhasznalokAreaRegistration : AreaRegistration
|
|
{
|
|
public override string AreaName
|
|
{
|
|
get { return "Felhasznalok"; }
|
|
}
|
|
|
|
public override void RegisterArea(AreaRegistrationContext context)
|
|
{
|
|
context.MapRoute(
|
|
"Felhasznalok_default",
|
|
"Felhasznalok/{controller}/{action}/{id}",
|
|
new { action = "Index", id = UrlParameter.Optional }
|
|
);
|
|
}
|
|
}
|
|
}
|