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.
20 lines
586 B
20 lines
586 B
using System.Collections.Generic;
|
|
|
|
namespace NSC
|
|
{
|
|
/// <summary>
|
|
/// 功能:公共服务接口
|
|
/// 作者:王昊昇
|
|
/// 时间:2012.11.8
|
|
/// </summary>
|
|
public interface IService
|
|
{
|
|
/// <summary>
|
|
/// 服务函数
|
|
/// </summary>
|
|
/// <param name="userAuth">客户端的访问级别</param>
|
|
/// <param name="input">传入的数据</param>
|
|
/// <returns>服务执行后传出的返回值</returns>
|
|
NetServiceStruct ServiceFunction(Common.Data.UserAuthority userAuth, NetServiceStruct input);
|
|
}
|
|
}
|
|
|