public async Task <NodeEntry> ShipmentUpdatePost([FromRoute] ShipmentUpdatePost update)
 {
     return(await _shipmentsService.UpdateShipmentPost(
                update.NodeId,
                update.Body.Address1,
                update.Body.Address2,
                update.Body.Address3,
                update.Body.Address4,
                update.Body.AddressStreet,
                update.Body.AddressCity,
                update.Body.AddressZip,
                update.Body.AddressState,
                update.Body.PostType,
                update.Body.PostTypeOther,
                update.Body.PostItemType,
                update.Body.PostItemTypeOther,
                update.Body.PostItemWeight,
                update.Body.PostItemPrice,
                update.Body.PostItemNumber,
                update.Body.PostItemId,
                update.Body.PostItemCashOnDelivery,
                update.Body.PostItemStatedPrice));
 }