using GDNXFD.Data; using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel; using System.Text; using System.Threading.Tasks; namespace GDNXFD.WcfService { [ServiceContract] public interface IDefectBillService { /// /// 生成缺陷单方法 /// /// [OperationContract] bool DefectBill(FaultInfo info, string alertText, string userName); } }