using System.Web.Mvc; namespace Neo.Legitimate.NewAssociationRequest { public class Routes : AreaRegistration { public override string AreaName { get { return "NewAssociationRequest"; } } public override void RegisterArea(AreaRegistrationContext context) { context.MapRoute( "NewAssociation_Default", "NewAssociationRequest/{Controller}/{action}/{workflowid}/{entityid}" ); } } }