111
cjs
2025-06-06 03e67373c4c3bef21936ec1f9037f2ebcd434583
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
 
namespace HH.AMS.WebApi.Areas.UpKeep
{
    public class UpKeepAreaRegistration : AreaRegistration
    {
        public override string AreaName
        {
            get
            {
                return "UpKeep";
            }
        }
 
        public override void RegisterArea(AreaRegistrationContext context)
        {
            context.MapRoute(
              this.AreaName + "default",
              this.AreaName + "/{controller}/{action}/{id}",
              new { area = this.AreaName, controller = "Home", action = "Index", id = UrlParameter.Optional }
              //new string[] { "HH.AMS.WebApi.Areas." + this.AreaName + ".Controllers" }
            );
        }
    }
}