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