You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
453 B
18 lines
453 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Runtime.Serialization;
|
||
|
using System.ServiceModel;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace QMFrameWork.WebServiceHost
|
||
|
{
|
||
|
// 注意: 如果更改此处的接口名称 "IServicesManager",也必须更新 App.config 中对 "IServicesManager" 的引用。
|
||
|
[ServiceContract]
|
||
|
public interface IServicesManager
|
||
|
{
|
||
|
[OperationContract]
|
||
|
void DoWork();
|
||
|
}
|
||
|
}
|