You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
61 lines
1.4 KiB
9 months ago
|
using LibDiningXZZD;
|
||
|
using LibFengHuoAPI;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.ServiceModel.Activation;
|
||
|
using System.Web;
|
||
|
using System.Web.Routing;
|
||
|
using System.Web.Security;
|
||
|
using System.Web.SessionState;
|
||
|
|
||
|
namespace CampOpenWebAPI
|
||
|
{
|
||
|
public class Global : System.Web.HttpApplication
|
||
|
{
|
||
|
|
||
|
protected void Application_Start(object sender, EventArgs e)
|
||
|
{
|
||
|
RegisterRoutes();
|
||
|
}
|
||
|
|
||
|
private void RegisterRoutes()
|
||
|
{
|
||
|
//添加西藏总队餐厅API服务
|
||
|
RouteTable.Routes.Add(new ServiceRoute("DiningWebAPIService", new WebServiceHostFactory(), typeof(DiningWebAPIService)));
|
||
|
|
||
|
//添加烽火公司API接口服务
|
||
|
RouteTable.Routes.Add(new ServiceRoute("FengHuoWebAPIService", new WebServiceHostFactory(), typeof(FengHuoWebAPIService)));
|
||
|
}
|
||
|
|
||
|
protected void Session_Start(object sender, EventArgs e)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
protected void Application_BeginRequest(object sender, EventArgs e)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
protected void Application_AuthenticateRequest(object sender, EventArgs e)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
protected void Application_Error(object sender, EventArgs e)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
protected void Session_End(object sender, EventArgs e)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
protected void Application_End(object sender, EventArgs e)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|