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