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
{
///
/// 登录服务接口
///
[ServiceContract]
public interface ILoginService
{
///
/// 登录校验
///
/// 登录验证信息
/// 客户端凭据
/// 登录信息
[OperationContract]
LoginInfo IsLogin(LoginInfo login, CredentialInfo c);
///
/// 获取登录信息
///
/// 客户端凭据
/// 登录信息
[OperationContract]
LoginInfo GetLoginInfo(CredentialInfo c);
}
}