aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarcinzelent <zelent.marcin@protonmail.com>2017-11-20 14:36:20 +0100
committermarcinzelent <zelent.marcin@protonmail.com>2017-11-20 14:36:20 +0100
commitf6f830d066635c91763dd1ae6248c8c189e6fe7e (patch)
tree7cf4d3315bda5829046e029cf52d2e2d9a167380 /AirPollutionWebApi/Global.asax.cs
parent7ff8524f57d6f4641e4a3dbea6ff6dbe9e346deb (diff)
Added WebApi.
Diffstat (limited to 'AirPollutionWebApi/Global.asax.cs')
-rw-r--r--AirPollutionWebApi/Global.asax.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/AirPollutionWebApi/Global.asax.cs b/AirPollutionWebApi/Global.asax.cs
new file mode 100644
index 0000000..aa5b94f
--- /dev/null
+++ b/AirPollutionWebApi/Global.asax.cs
@@ -0,0 +1,17 @@
+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);
+ }
+ }
+}