19 lines
416 B
C#
19 lines
416 B
C#
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();
|
|
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
|
|
|
// avvio il metodo init x applicazione...
|
|
MP_Startup.Init();
|
|
}
|
|
}
|
|
}
|