13 lines
415 B
C#
13 lines
415 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|