//------------------------------------------------------------------------------
//
// 此代码由工具生成。
// 运行时版本:4.0.30319.18444
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
//
//------------------------------------------------------------------------------
namespace Dongke.IBOSS.PRD.WCF.Proxys.DKIBOSSPRDService {
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
[System.ServiceModel.ServiceContractAttribute(Namespace="Dongke.IBOSS.PRD.WCF.Contracts", ConfigurationName="DKIBOSSPRDService.IDKIBOSSPRD")]
public interface IDKIBOSSPRD {
[System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/GetServiceState", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/GetServiceStateResponse")]
bool GetServiceState();
[System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/DoLogin", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/DoLoginResponse")]
Dongke.IBOSS.PRD.WCF.DataModels.LoginResultEntity DoLogin(Dongke.IBOSS.PRD.WCF.DataModels.LoginRequestEntity requestEntity);
[System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/DoLoginRefresh", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/DoLoginRefreshResponse")]
Dongke.IBOSS.PRD.WCF.DataModels.LoginResultEntity DoLoginRefresh(Dongke.IBOSS.PRD.WCF.DataModels.LoginRequestEntity requestEntity);
[System.ServiceModel.OperationContractAttribute(IsOneWay=true, Action="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/Logout")]
void Logout(int userID);
[System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/IsNeedUpgrade", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/IsNeedUpgradeResponse")]
Dongke.IBOSS.PRD.WCF.DataModels.NeedUpgradeResultEntity IsNeedUpgrade(string version);
[System.ServiceModel.OperationContractAttribute(Action="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/DownloadUpgradeFile", ReplyAction="Dongke.IBOSS.PRD.WCF.Contracts/IDKIBOSSPRD/DownloadUpgradeFileResponse")]
byte[] DownloadUpgradeFile();
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
public interface IDKIBOSSPRDChannel : Dongke.IBOSS.PRD.WCF.Proxys.DKIBOSSPRDService.IDKIBOSSPRD, System.ServiceModel.IClientChannel {
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
public partial class DKIBOSSPRDClient : System.ServiceModel.ClientBase, Dongke.IBOSS.PRD.WCF.Proxys.DKIBOSSPRDService.IDKIBOSSPRD {
public DKIBOSSPRDClient() {
}
public DKIBOSSPRDClient(string endpointConfigurationName) :
base(endpointConfigurationName) {
}
public DKIBOSSPRDClient(string endpointConfigurationName, string remoteAddress) :
base(endpointConfigurationName, remoteAddress) {
}
public DKIBOSSPRDClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
base(endpointConfigurationName, remoteAddress) {
}
public DKIBOSSPRDClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
base(binding, remoteAddress) {
}
public bool GetServiceState() {
return base.Channel.GetServiceState();
}
public Dongke.IBOSS.PRD.WCF.DataModels.LoginResultEntity DoLogin(Dongke.IBOSS.PRD.WCF.DataModels.LoginRequestEntity requestEntity) {
return base.Channel.DoLogin(requestEntity);
}
public Dongke.IBOSS.PRD.WCF.DataModels.LoginResultEntity DoLoginRefresh(Dongke.IBOSS.PRD.WCF.DataModels.LoginRequestEntity requestEntity) {
return base.Channel.DoLoginRefresh(requestEntity);
}
public void Logout(int userID) {
base.Channel.Logout(userID);
}
public Dongke.IBOSS.PRD.WCF.DataModels.NeedUpgradeResultEntity IsNeedUpgrade(string version) {
return base.Channel.IsNeedUpgrade(version);
}
public byte[] DownloadUpgradeFile() {
return base.Channel.DownloadUpgradeFile();
}
}
}