24 lines
578 B
C#
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 }
|
|
);
|
|
}
|
|
}
|
|
}
|