37 lines
841 B
C#
37 lines
841 B
C#
![]() |
using Epost.Common;
|
|||
|
using Epost.TestToolsWeb.App_Start;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Linq;
|
|||
|
using System.Net;
|
|||
|
using System.Threading;
|
|||
|
using System.Timers;
|
|||
|
using System.Web;
|
|||
|
using System.Web.Http;
|
|||
|
using System.Web.Mvc;
|
|||
|
using System.Web.Optimization;
|
|||
|
using System.Web.Routing;
|
|||
|
|
|||
|
namespace Epost.TestToolsWeb
|
|||
|
{
|
|||
|
public class MvcApplication : System.Web.HttpApplication
|
|||
|
{
|
|||
|
protected void Application_Start()
|
|||
|
{
|
|||
|
AreaRegistration.RegisterAllAreas();
|
|||
|
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
|
|||
|
GlobalConfiguration.Configure(WebApiConfig.Register);
|
|||
|
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
|||
|
BundleConfig.RegisterBundles(BundleTable.Bundles);
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|