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