HelpPageAreaRegistration.cs 629 B

123456789101112131415161718192021222324
  1. namespace EVCB_OCPP.WEBAPI.Areas.HelpPage
  2. {
  3. public class HelpPageAreaRegistration : AreaRegistration
  4. {
  5. public override string AreaName
  6. {
  7. get
  8. {
  9. return "HelpPage";
  10. }
  11. }
  12. public override void RegisterArea(AreaRegistrationContext context)
  13. {
  14. context.MapRoute(
  15. "HelpPage_Default",
  16. "Help/{action}/{apiId}",
  17. new { controller = "Help", action = "Index", apiId = UrlParameter.Optional });
  18. HelpPageConfig.Register(GlobalConfiguration.Configuration);
  19. }
  20. }
  21. }