13 lines
415 B
C#
Executable File
13 lines
415 B
C#
Executable File
using System.Web.Http;
|
|
using System.Web.Mvc;
|
|
|
|
namespace pnp.api.elevatedprivileges {
|
|
public class WebApiApplication : System.Web.HttpApplication {
|
|
protected void Application_Start() {
|
|
AreaRegistration.RegisterAllAreas();
|
|
GlobalConfiguration.Configure(WebApiConfig.Register);
|
|
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
|
|
}
|
|
}
|
|
}
|