|
123456789101112131415161718192021222324 |
- using System.Web.Mvc;
-
- namespace Learun.Application.Web.Areas.StudentWork
- {
- public class StudentWorkAreaRegistration : AreaRegistration
- {
- public override string AreaName
- {
- get
- {
- return "StudentWork";
- }
- }
-
- public override void RegisterArea(AreaRegistrationContext context)
- {
- context.MapRoute(
- "StudentWork_default",
- "StudentWork/{controller}/{action}/{id}",
- new { action = "Index", id = UrlParameter.Optional }
- );
- }
- }
- }
|