aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'AirPollutionWebApi/Global.asax.cs')
-rw-r--r--AirPollutionWebApi/Global.asax.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/AirPollutionWebApi/Global.asax.cs b/AirPollutionWebApi/Global.asax.cs
deleted file mode 100644
index aa5b94f..0000000
--- a/AirPollutionWebApi/Global.asax.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System.Web;
-using System.Web.Mvc;
-using System.Web.Routing;
-using System.Web.Http;
-
-namespace AirPollutionWebApi
-{
- public class Global : HttpApplication
- {
- protected void Application_Start()
- {
- AreaRegistration.RegisterAllAreas();
- GlobalConfiguration.Configure(WebApiConfig.Register);
- RouteConfig.RegisterRoutes(RouteTable.Routes);
- }
- }
-}