WaterSourceManageAreaRegistration.cs 636 B

12345678910111213141516171819202122232425
  1. using System.Web.Mvc;
  2. namespace LeaRun.Application.Web.Areas.WaterSourceManage
  3. {
  4. public class WaterSourceManageAreaRegistration : AreaRegistration
  5. {
  6. public override string AreaName
  7. {
  8. get
  9. {
  10. return "WaterSourceManage";
  11. }
  12. }
  13. public override void RegisterArea(AreaRegistrationContext context)
  14. {
  15. context.MapRoute(
  16. "WaterSourceManage_default",
  17. "WaterSourceManage/{controller}/{action}/{id}",
  18. new { action = "Index", id = UrlParameter.Optional }
  19. );
  20. }
  21. }
  22. }