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.

31 lines
780 B
C#

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