init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
29
KretaWeb/Areas/Intezmeny/IntezmenyAreaRegistration.cs
Normal file
29
KretaWeb/Areas/Intezmeny/IntezmenyAreaRegistration.cs
Normal file
|
@ -0,0 +1,29 @@
|
|||
using System.Web.Mvc;
|
||||
|
||||
namespace Kreta.Web.Areas.Intezmeny
|
||||
{
|
||||
public class IntezmenyAreaRegistration : AreaRegistration
|
||||
{
|
||||
public override string AreaName
|
||||
{
|
||||
get
|
||||
{
|
||||
return "Intezmeny";
|
||||
}
|
||||
}
|
||||
|
||||
public override void RegisterArea(AreaRegistrationContext context)
|
||||
{
|
||||
context.MapRoute(
|
||||
"Intezmeny_faliujsag",
|
||||
"Intezmeny/Faliujsag/GetMoreEntries/{startindex}/{range}"
|
||||
);
|
||||
|
||||
context.MapRoute(
|
||||
"Intezmeny_default",
|
||||
"Intezmeny/{controller}/{action}/{id}",
|
||||
new { action = "Index", id = UrlParameter.Optional }
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue