You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
543 B
C#

9 months ago
using System.Web.Mvc;
namespace DSWeb.WMS
{
public class WMSAreaRegistration : AreaRegistration
{
public override string AreaName
{
get
{
return "WMS";
}
}
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"WMS_default",
"WMS/{controller}/{action}/{id}",
new { action = "Index", id = UrlParameter.Optional }
);
}
}
}