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