using System.Web.Mvc; namespace HH.WMS.WebUI.Areas.Instock { public class InstockAreaRegistration : AreaRegistration { public override string AreaName { get { return "Instock"; } } public override void RegisterArea(AreaRegistrationContext context) { context.MapRoute( "Instock_default", "Instock/{controller}/{action}/{id}", new { action = "Index", id = UrlParameter.Optional } ); } } }