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