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