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