|
- using System.Web.Mvc;
-
- namespace Learun.Application.Web.Areas.LR_IM
- {
- public class LR_IMAreaRegistration : AreaRegistration
- {
- public override string AreaName
- {
- get
- {
- return "LR_IM";
- }
- }
-
- public override void RegisterArea(AreaRegistrationContext context)
- {
- context.MapRoute(
- "LR_IM_default",
- "LR_IM/{controller}/{action}/{id}",
- new { action = "Index", id = UrlParameter.Optional }
- );
- }
- }
- }
|