Global.asax.cs 358 B

123456789101112131415
  1. // Copyright (c) 2012-2020 fo-dicom contributors.
  2. // Licensed under the Microsoft Public License (MS-PL).
  3. using System.Web.Http;
  4. namespace Wado
  5. {
  6. public class WebApiApplication : System.Web.HttpApplication
  7. {
  8. protected void Application_Start()
  9. {
  10. GlobalConfiguration.Configure(WebApiConfig.Register);
  11. }
  12. }
  13. }