IDefectBillService.cs 487 B

123456789101112131415161718192021
  1. using GDNXFD.Data;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.ServiceModel;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace GDNXFD.WcfService
  9. {
  10. [ServiceContract]
  11. public interface IDefectBillService
  12. {
  13. /// <summary>
  14. /// 生成缺陷单方法
  15. /// </summary>
  16. /// <returns></returns>
  17. [OperationContract]
  18. bool DefectBill(FaultInfo info, string alertText, string userName);
  19. }
  20. }