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