//------------------------------------------------------------------------------
// 
//     此代码由工具生成。
//     运行时版本:4.0.30319.42000
//
//     对此文件的更改可能会导致不正确的行为,并且如果
//     重新生成代码,这些更改将会丢失。
// 
//------------------------------------------------------------------------------
namespace DeiNiu.wms.win.ServiceReferenceSetup {
    
    
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
    [System.ServiceModel.ServiceContractAttribute(ConfigurationName="ServiceReferenceSetup.ISetup")]
    public interface ISetup {
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISetup/initialDesk", ReplyAction="http://tempuri.org/ISetup/initialDeskResponse")]
        bool initialDesk();
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISetup/getDesks", ReplyAction="http://tempuri.org/ISetup/getDesksResponse")]
        System.Data.DataTable getDesks();
    }
    
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
    public interface ISetupChannel : DeiNiu.wms.win.ServiceReferenceSetup.ISetup, System.ServiceModel.IClientChannel {
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
    public partial class SetupClient : System.ServiceModel.ClientBase, DeiNiu.wms.win.ServiceReferenceSetup.ISetup {
        
        public SetupClient() {
        }
        
        public SetupClient(string endpointConfigurationName) : 
                base(endpointConfigurationName) {
        }
        
        public SetupClient(string endpointConfigurationName, string remoteAddress) : 
                base(endpointConfigurationName, remoteAddress) {
        }
        
        public SetupClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : 
                base(endpointConfigurationName, remoteAddress) {
        }
        
        public SetupClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : 
                base(binding, remoteAddress) {
        }
        
        public bool initialDesk() {
            return base.Channel.initialDesk();
        }
        
        public System.Data.DataTable getDesks() {
            return base.Channel.getDesks();
        }
    }
}