//------------------------------------------------------------------------------ // // 此代码由工具生成。 // 运行时版本:4.0.30319.42000 // // 对此文件的更改可能会导致不正确的行为,并且如果 // 重新生成代码,这些更改将会丢失。 // //------------------------------------------------------------------------------ namespace DeiNiu.wms.win.scheduledServiceTest { [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="scheduledServiceTest.IScheduledService")] public interface IScheduledService { [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IScheduledService/syncInRequest", ReplyAction="http://tempuri.org/IScheduledService/syncInRequestResponse")] void syncInRequest(); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IScheduledService/syncGoods", ReplyAction="http://tempuri.org/IScheduledService/syncGoodsResponse")] void syncGoods(); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IScheduledService/syncNewOwners", ReplyAction="http://tempuri.org/IScheduledService/syncNewOwnersResponse")] int syncNewOwners(); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IScheduledService/syncCustomer", ReplyAction="http://tempuri.org/IScheduledService/syncCustomerResponse")] int syncCustomer(); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IScheduledService/createPDAPickTasks", ReplyAction="http://tempuri.org/IScheduledService/createPDAPickTasksResponse")] void createPDAPickTasks(); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IScheduledService/syncAndCreatePickRequest", ReplyAction="http://tempuri.org/IScheduledService/syncAndCreatePickRequestResponse")] void syncAndCreatePickRequest(DeiNiu.Utils.enumOutStockRequestStatus status); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IScheduledService/createPickWaves", ReplyAction="http://tempuri.org/IScheduledService/createPickWavesResponse")] bool createPickWaves(); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IScheduledService/getJobInterVal", ReplyAction="http://tempuri.org/IScheduledService/getJobInterValResponse")] int[] getJobInterVal(); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IScheduledService/truncateDataForTestOnly", ReplyAction="http://tempuri.org/IScheduledService/truncateDataForTestOnlyResponse")] void truncateDataForTestOnly(); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IScheduledService/getWaveInterval", ReplyAction="http://tempuri.org/IScheduledService/getWaveIntervalResponse")] int getWaveInterval(); } [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] public interface IScheduledServiceChannel : DeiNiu.wms.win.scheduledServiceTest.IScheduledService, System.ServiceModel.IClientChannel { } [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] public partial class ScheduledServiceClient : System.ServiceModel.ClientBase, DeiNiu.wms.win.scheduledServiceTest.IScheduledService { public ScheduledServiceClient() { } public ScheduledServiceClient(string endpointConfigurationName) : base(endpointConfigurationName) { } public ScheduledServiceClient(string endpointConfigurationName, string remoteAddress) : base(endpointConfigurationName, remoteAddress) { } public ScheduledServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : base(endpointConfigurationName, remoteAddress) { } public ScheduledServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } public void syncInRequest() { base.Channel.syncInRequest(); } public void syncGoods() { base.Channel.syncGoods(); } public int syncNewOwners() { return base.Channel.syncNewOwners(); } public int syncCustomer() { return base.Channel.syncCustomer(); } public void createPDAPickTasks() { base.Channel.createPDAPickTasks(); } public void syncAndCreatePickRequest(DeiNiu.Utils.enumOutStockRequestStatus status) { base.Channel.syncAndCreatePickRequest(status); } public bool createPickWaves() { return base.Channel.createPickWaves(); } public int[] getJobInterVal() { return base.Channel.getJobInterVal(); } public void truncateDataForTestOnly() { base.Channel.truncateDataForTestOnly(); } public int getWaveInterval() { return base.Channel.getWaveInterval(); } } }