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.

14 lines
330 B

  1. using System.Web.Mvc;
  2. using System.Web.Routing;
  3. namespace Sevomin.WebFrontend
  4. {
  5. public class MvcApplication : System.Web.HttpApplication
  6. {
  7. protected void Application_Start()
  8. {
  9. AreaRegistration.RegisterAllAreas();
  10. RouteConfig.RegisterRoutes(RouteTable.Routes);
  11. }
  12. }
  13. }