kreta/KretaWeb/Areas/ImportExport/ImportExportAreaRegistration.cs
2024-03-13 00:33:46 +01:00

18 lines
514 B
C#

using System.Web.Mvc;
namespace Kreta.Web.Areas.ImportExport
{
public class ImportExportAreaRegistration : AreaRegistration
{
public override string AreaName => "ImportExport";
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"ImportExport_default",
"ImportExport/{controller}/{action}/{id}",
new { action = "Index", id = UrlParameter.Optional }
);
}
}
}