Files
REST_SERVER/VERAG_REST_SERVER/Global.asax.vb

12 lines
233 B
VB.net

Imports System.Web.Http
Public Class WebApiApplication
Inherits System.Web.HttpApplication
Protected Sub Application_Start()
GlobalConfiguration.Configure(AddressOf WebApiConfig.Register)
End Sub
End Class