選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

29 行
729 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace Learun.Application.Web.Areas.LogisticsManagement
  7. {
  8. public class LogisticsManagementAreaRegistration:AreaRegistration
  9. {
  10. public override string AreaName
  11. {
  12. get
  13. {
  14. return "LogisticsManagement";
  15. }
  16. }
  17. public override void RegisterArea(AreaRegistrationContext context)
  18. {
  19. context.MapRoute(
  20. "LogisticsManagement_default",
  21. "LogisticsManagement/{controller}/{action}/{id}",
  22. new { action = "Index", id = UrlParameter.Optional }
  23. );
  24. }
  25. }
  26. }