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