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); }
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); }