Global.asax.cs 255 B

123456789101112
  1. using System.Web.Http;
  2. namespace ModelePWA
  3. {
  4. public class WebApiApplication : System.Web.HttpApplication
  5. {
  6. protected void Application_Start()
  7. {
  8. GlobalConfiguration.Configure(WebApiConfig.Register);
  9. }
  10. }
  11. }