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