kreta/KretaWeb/Areas/LEPModul/LEPModulAreaRegistration.cs
2024-03-13 00:33:46 +01:00

24 lines
578 B
C#

using System.Web.Mvc;
namespace Kreta.Web.Areas.LEPModul
{
public class LEPModulAreaRegistration : AreaRegistration
{
public override string AreaName
{
get
{
return "LEPModul";
}
}
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"LEPModul_default",
"LEPModul/{controller}/{action}/{id}",
new { action = "Index", id = UrlParameter.Optional }
);
}
}
}