Files
MoonPro.net/MP-IO/Global.asax.cs
T
2020-09-22 22:05:31 +02:00

22 lines
576 B
C#

using MP_IO.App_Start;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Routing;
namespace MP_IO
{
public class WebApiApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
// Codice eseguito all'avvio dell'applicazione
AreaRegistration.RegisterAllAreas();
GlobalConfiguration.Configure(WebApiConfig.Register);
RouteConfig.RegisterRoutes(RouteTable.Routes);
// avvio il metodo init x applicazione...
MP_Startup.Init();
}
}
}