You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

StudentWorkAreaRegistration.cs 609 B

4 years ago
123456789101112131415161718192021222324
  1. using System.Web.Mvc;
  2. namespace Learun.Application.Web.Areas.StudentWork
  3. {
  4. public class StudentWorkAreaRegistration : AreaRegistration
  5. {
  6. public override string AreaName
  7. {
  8. get
  9. {
  10. return "StudentWork";
  11. }
  12. }
  13. public override void RegisterArea(AreaRegistrationContext context)
  14. {
  15. context.MapRoute(
  16. "StudentWork_default",
  17. "StudentWork/{controller}/{action}/{id}",
  18. new { action = "Index", id = UrlParameter.Optional }
  19. );
  20. }
  21. }
  22. }