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