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 } ); } } }