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.
35 lines
943 B
35 lines
943 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.ServiceModel;
|
|
using System.Text;
|
|
using QMFrameWork.ServiceInterface;
|
|
using QMAPP.Entity.Sys;
|
|
|
|
namespace QM.Exchange.Core
|
|
{
|
|
/// <summary>
|
|
/// 登录服务接口
|
|
/// </summary>
|
|
[ServiceContract]
|
|
public interface ILoginService
|
|
{
|
|
/// <summary>
|
|
/// 登录校验
|
|
/// </summary>
|
|
/// <param name="login">登录验证信息</param>
|
|
/// <param name="c">客户端凭据</param>
|
|
/// <returns>登录信息</returns>
|
|
[OperationContract]
|
|
LoginInfo IsLogin(LoginInfo login, CredentialInfo c);
|
|
|
|
/// <summary>
|
|
/// 获取登录信息
|
|
/// </summary>
|
|
/// <param name="c">客户端凭据</param>
|
|
/// <returns>登录信息</returns>
|
|
[OperationContract]
|
|
LoginInfo GetLoginInfo(CredentialInfo c);
|
|
}
|
|
}
|
|
|