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