//------------------------------------------------------------------------------
|
// <auto-generated>
|
// 此代码由工具生成。
|
// 运行时版本:4.0.30319.42000
|
//
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
// 重新生成代码,这些更改将会丢失。
|
// </auto-generated>
|
//------------------------------------------------------------------------------
|
|
namespace IWareCC.wmsService {
|
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
[System.ServiceModel.ServiceContractAttribute(ConfigurationName="wmsService.Iapitest")]
|
public interface Iapitest {
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/callContainer", ReplyAction="http://tempuri.org/Iapitest/callContainerResponse")]
|
[System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
|
void callContainer(int containerTypeId);
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/callContainer", ReplyAction="http://tempuri.org/Iapitest/callContainerResponse")]
|
System.Threading.Tasks.Task callContainerAsync(int containerTypeId);
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/sortingConfirm", ReplyAction="http://tempuri.org/Iapitest/sortingConfirmResponse")]
|
[System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
|
void sortingConfirm(string PlateCode, string Products);
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/sortingConfirm", ReplyAction="http://tempuri.org/Iapitest/sortingConfirmResponse")]
|
System.Threading.Tasks.Task sortingConfirmAsync(string PlateCode, string Products);
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/pdaLogin", ReplyAction="http://tempuri.org/Iapitest/pdaLoginResponse")]
|
[System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
|
int pdaLogin(string userName, string passWord);
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/pdaLogin", ReplyAction="http://tempuri.org/Iapitest/pdaLoginResponse")]
|
System.Threading.Tasks.Task<int> pdaLoginAsync(string userName, string passWord);
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/madeDish", ReplyAction="http://tempuri.org/Iapitest/madeDishResponse")]
|
[System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
|
void madeDish(string containerCode);
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/madeDish", ReplyAction="http://tempuri.org/Iapitest/madeDishResponse")]
|
System.Threading.Tasks.Task madeDishAsync(string containerCode);
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/subtractQty", ReplyAction="http://tempuri.org/Iapitest/subtractQtyResponse")]
|
[System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
|
bool subtractQty(string subInfo);
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/subtractQty", ReplyAction="http://tempuri.org/Iapitest/subtractQtyResponse")]
|
System.Threading.Tasks.Task<bool> subtractQtyAsync(string subInfo);
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/getToPlace", ReplyAction="http://tempuri.org/Iapitest/getToPlaceResponse")]
|
[System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
|
string getToPlace(int taskId, int continerType, int height);
|
|
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/getToPlace", ReplyAction="http://tempuri.org/Iapitest/getToPlaceResponse")]
|
System.Threading.Tasks.Task<string> getToPlaceAsync(int taskId, int continerType, int height);
|
}
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
public interface IapitestChannel : IWareCC.wmsService.Iapitest, System.ServiceModel.IClientChannel {
|
}
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
|
public partial class IapitestClient : System.ServiceModel.ClientBase<IWareCC.wmsService.Iapitest>, IWareCC.wmsService.Iapitest {
|
|
public IapitestClient() {
|
}
|
|
public IapitestClient(string endpointConfigurationName) :
|
base(endpointConfigurationName) {
|
}
|
|
public IapitestClient(string endpointConfigurationName, string remoteAddress) :
|
base(endpointConfigurationName, remoteAddress) {
|
}
|
|
public IapitestClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
|
base(endpointConfigurationName, remoteAddress) {
|
}
|
|
public IapitestClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
|
base(binding, remoteAddress) {
|
}
|
|
public void callContainer(int containerTypeId) {
|
base.Channel.callContainer(containerTypeId);
|
}
|
|
public System.Threading.Tasks.Task callContainerAsync(int containerTypeId) {
|
return base.Channel.callContainerAsync(containerTypeId);
|
}
|
|
public void sortingConfirm(string PlateCode, string Products) {
|
base.Channel.sortingConfirm(PlateCode, Products);
|
}
|
|
public System.Threading.Tasks.Task sortingConfirmAsync(string PlateCode, string Products) {
|
return base.Channel.sortingConfirmAsync(PlateCode, Products);
|
}
|
|
public int pdaLogin(string userName, string passWord) {
|
return base.Channel.pdaLogin(userName, passWord);
|
}
|
|
public System.Threading.Tasks.Task<int> pdaLoginAsync(string userName, string passWord) {
|
return base.Channel.pdaLoginAsync(userName, passWord);
|
}
|
|
public void madeDish(string containerCode) {
|
base.Channel.madeDish(containerCode);
|
}
|
|
public System.Threading.Tasks.Task madeDishAsync(string containerCode) {
|
return base.Channel.madeDishAsync(containerCode);
|
}
|
|
public bool subtractQty(string subInfo) {
|
return base.Channel.subtractQty(subInfo);
|
}
|
|
public System.Threading.Tasks.Task<bool> subtractQtyAsync(string subInfo) {
|
return base.Channel.subtractQtyAsync(subInfo);
|
}
|
|
public string getToPlace(int taskId, int continerType, int height) {
|
return base.Channel.getToPlace(taskId, continerType, height);
|
}
|
|
public System.Threading.Tasks.Task<string> getToPlaceAsync(int taskId, int continerType, int height) {
|
return base.Channel.getToPlaceAsync(taskId, continerType, height);
|
}
|
}
|
}
|