| 1234567891011121314151617181920212223242526 |
- /*******************************************************************************
- * Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:ICMNModule.cs
- * 2.功能描述:共通业务服务契约。
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 陈晓野 2015/03/26 1.00 新建
- *******************************************************************************/
- using System.ServiceModel;
- namespace Dongke.IBOSS.PRD.WCF.Contracts
- {
- /// <summary>
- /// 共通处理服务契约
- /// </summary>
- [ServiceContract(ConfigurationName = "CMNModuleService.ICMNModule",
- Name = "ICMNModule",
- Namespace = "Dongke.IBOSS.PRD.WCF.Contracts")]
- public interface ICMNModule
- {
- [OperationContract]
- string Test();
- }
- }
|