Пример #1
0
    public createShellResponse createShell(createShellRequest createSR)
    {
        createShellRequest1  request  = new createShellRequest1(createSR);
        createShellResponse1 response = this.createShell(request);

        return(response.createShellResult);
    }
Пример #2
0
        public static createShellResponse createShell(string index, string userid)
        {
            var shell = new createShellRequest();

            shell.index  = index;
            shell.userid = userid;
            var result = proxy.createShell(shell);

            return(result);
        }
Пример #3
0
        public static createShellResponse createShell(string deliveryIndex, string index, string userid, string tareNumber)
        {
            var shell = new createShellRequest();

            shell.index         = index;
            shell.userid        = userid;
            shell.tareNumber    = tareNumber;
            shell.deliveryIndex = deliveryIndex;
            var result = proxy.createShell(shell);

            return(result);
        }
Пример #4
0
        public static createShellResponse createShell(string deliveryIndex, string index, string userid, string tareNumber,
                                                      string postUnitIndexTo, long routePlanId, long routePointId, string shellTypeId)
        {
            var shell = new createShellRequest();

            shell.index           = index;
            shell.userid          = userid;
            shell.tareNumber      = tareNumber;
            shell.postUnitIndexTo = postUnitIndexTo;
            shell.routePlanId     = routePlanId;
            shell.routePointId    = routePointId;
            shell.shellTypeId     = shellTypeId;

            //shell.deliveryIndex = deliveryIndex;
            var result = proxy.createShell(shell);

            return(result);
        }
Пример #5
0
 public createShellRequest1(createShellRequest createSR)
 {
     this.createSR = createSR;
 }
Пример #6
0
 public createShellRequest1(createShellRequest createShellRequest)
 {
     this.createShellRequest = createShellRequest;
 }