18 lines
514 B
C#
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 }
|
|
);
|
|
}
|
|
}
|
|
}
|