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