Ejemplo n.º 1
0
    public packShellResponse packShell(packShellRequest shell)
    {
        packShellRequest1  request  = new packShellRequest1(shell);
        packShellResponse1 response = this.packShell(request);

        return(response.packShellResult);
    }
Ejemplo n.º 2
0
        public static packShellResponse packShell(string barcodeId, string index, string shellId, string userid)
        {
            var pack = new packShellRequest();

            pack.barcodeId = barcodeId;
            pack.index     = index;
            pack.shellId   = shellId;
            pack.userid    = userid;
            var result = proxy.packShell(pack);

            return(result);
        }
Ejemplo n.º 3
0
 public packShellRequest1(packShellRequest shell)
 {
     this.shell = shell;
 }
Ejemplo n.º 4
0
 public packShellRequest1(packShellRequest packShellRequest)
 {
     this.packShellRequest = packShellRequest;
 }