| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /*******************************************************************************
- * Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:CMNModuleService.cs
- * 2.功能描述:共通业务处理。
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 陈晓野 2015/03/26 1.00 新建
- *******************************************************************************/
- using System.ServiceModel;
- using System.ServiceModel.Activation;
- using Dongke.IBOSS.PRD.WCF.Contracts;
- namespace Dongke.IBOSS.PRD.WCF.Services
- {
- /// <summary>
- /// 共通业务处理
- /// </summary>
- // 服务实现类,继承服务声明接口
- // 该标签声明该服务可以在ASP.NET下运行
- [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
- [ServiceBehavior(ConfigurationName = "CMNModuleService",
- InstanceContextMode = InstanceContextMode.PerCall,
- ConcurrencyMode = ConcurrencyMode.Multiple,
- UseSynchronizationContext = false)]
- public class CMNModuleService : ServicesBase, ICMNModule
- {
- #region 构造函数
- /// <summary>
- /// 构造函数
- /// </summary>
- public CMNModuleService()
- : base()
- {
- }
- public string Test()
- {
- return null;
- }
- #endregion
- }
- }
|