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.
DS7/DSWeb/Areas/OA/AccountAreaRegistration.cs

31 lines
766 B
C#

2 years ago
using System.Web.Mvc;
namespace DSWeb.Areas.OA
{
public class AccountAreaRegistration : AreaRegistration
{
public override string AreaName
{
get
{
return "OA";
}
}
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"OA_default",
"OA/{controller}/{action}/{id}",
new { action = "Index", id = UrlParameter.Optional }
);
//context.MapRoute(
// "TruckMng_Edit_default",
// "TruckMng/{controller}/{action}/{id}",
// new { action = "Edit", id = UrlParameter.Optional }
//);
}
}
}