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