PDAModuleServiceSemi.cs 1.1 KB

123456789101112131415161718192021222324252627282930
  1. /*******************************************************************************
  2. * Copyright(c) 2019 DongkeSoft All rights reserved. / Confidential
  3. * 类的信息:
  4. * 1.程序名称:PDAModuleService.cs
  5. * 2.功能描述:PDA模块WCF服务
  6. * 编辑履历:
  7. * 作者 日期 版本 修改内容
  8. * 徐伟 2019/12/02 1.00 新建
  9. *******************************************************************************/
  10. using Dongke.IBOSS.PRD.WCF.Contracts;
  11. using Dongke.IBOSS.PRD.WCF.DataModels;
  12. using Dongke.IBOSS.PRD.Service.PDAModuleLogic;
  13. namespace Dongke.IBOSS.PRD.WCF.Services
  14. {
  15. public partial class PDAModuleService : IPDAModule
  16. {
  17. public ActionResult GetGoodsGradeDataSemi(string accountCode, string userCode, string userPassword, string sessionKey, int procedureId)
  18. {
  19. return CallActionResult("PDAModuleLogic.PDAModuleLogic.GetGoodsGradeDataSemi",
  20. accountCode,
  21. userCode,
  22. userPassword,
  23. sessionKey,
  24. procedureId
  25. );
  26. }
  27. }
  28. }