21 lines
617 B
C#
21 lines
617 B
C#
using System.Web.Mvc;
|
|
using System.Web.Routing;
|
|
using NP.Base.Popbill;
|
|
using Spring.Web.Mvc;
|
|
|
|
namespace FO
|
|
{
|
|
public class MvcApplication : SpringMvcApplication
|
|
{
|
|
protected void Application_Start()
|
|
{
|
|
AreaRegistration.RegisterAllAreas();
|
|
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
|
|
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
|
//BundleConfig.RegisterBundles(BundleTable.Bundles);
|
|
MvcHandler.DisableMvcResponseHeader = true;
|
|
PopbillConfig.StartTaxinvoiceService();
|
|
}
|
|
}
|
|
}
|