Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

24 wiersze
644 B

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