public async Task <NodeEntry> ShipmentUpdatePublish([FromRoute] ShipmentUpdatePersonally update)
 {
     return(await _shipmentsService.UpdateShipmentPersonally(
                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));
 }