天津投入产出系统后端
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.
 
 
 
 
 
 

23 lines
828 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
using QMAPP.FJC.BLL.Operation;
using System.ServiceModel.Activation;
namespace QMFrameWork.WebServiceHost
{
// 注意: 使用“重构”菜单上的“重命名”命令,可以同时更改代码、svc 和配置文件中的类名“AirbagSupportPackageService”。
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Required)]
public class AirbagSupportPackageService : IAirbagSupportPackageService
{
public void AddAirbagSupport(string barCode)
{
int a = 1;
ProductBLL productbll = new ProductBLL();
productbll.InsertAirbagSupportPackage(barCode);
}
}
}