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