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