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