| 123456789101112131415161718192021222324252627282930 |
- /*******************************************************************************
- * Copyright(c) 2019 DongkeSoft All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:PDAModuleService.cs
- * 2.功能描述:PDA模块WCF服务
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 徐伟 2019/12/02 1.00 新建
- *******************************************************************************/
- using Dongke.IBOSS.PRD.WCF.Contracts;
- using Dongke.IBOSS.PRD.WCF.DataModels;
- using Dongke.IBOSS.PRD.Service.PDAModuleLogic;
- namespace Dongke.IBOSS.PRD.WCF.Services
- {
- public partial class PDAModuleService : IPDAModule
- {
- public ActionResult GetGoodsGradeDataSemi(string accountCode, string userCode, string userPassword, string sessionKey, int procedureId)
- {
- return CallActionResult("PDAModuleLogic.PDAModuleLogic.GetGoodsGradeDataSemi",
- accountCode,
- userCode,
- userPassword,
- sessionKey,
- procedureId
- );
- }
- }
- }
|