Mineplex2018-withcommit/Website/LOC.Website.Web/Areas/Manage/ManageAreaRegistration.cs

25 lines
574 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
using System.Web.Mvc;
namespace LOC.Website.Web.Areas.Manage
{
public class ManageAreaRegistration : AreaRegistration
{
public override string AreaName
{
get
{
return "Manage";
}
}
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"Manage_default",
"Manage/{controller}/{action}/{id}",
new { action = "Index", id = UrlParameter.Optional }
);
}
}
}