5.7.1 修改提货 (C#)

修改提货

修改拾取的示例源代码
PersonInfo Shipper = new PersonInfo(); Shipper.Name = "Unixus Solutions Sdn. Bhd."; Shipper.ContactPerson = "IT Department"; Shipper.Address1 = "46-02 JALAN TUN ABDUL RAZAK,"; Shipper.Address2 = "SUSUR 1,"; Shipper.Address3 = string.Empty; Shipper.PostCode = "80000"; Shipper.City = "JOHOR BHARU"; Shipper.State = "JOHOR"; Shipper.CountryCode = "MY"; Shipper.StationCode = ""; Shipper.Phone1 = "607-2222668"; Shipper.Phone2 = ""; Shipper.MobilePhone = ""; Shipper.Fax = ""; Shipper.Email = "[email protected]"; Shipper.Url = ""; UpdatePickupDetails Pickup1 = new UpdatePickupDetails(); Pickup1.Shipper = Shipper; Pickup1.PickupNo = "PKR180907123822"; Pickup1.Quantity = 10; Pickup1.Weight = 10.0; Pickup1.PickupDateTime = DateTime.Now; Pickup1.Remarks = "The shipment easy to broke, please becareful." ModifyPickupDetails Modify = new ModifyPickupDetails(); Modify.Pickup= new ModifyPickupDetails[1]; Modify.Pickup[0]= Pickup1; PickupClient client = new PickupClient(); PickupResponse response = client.ProcessPickup(Modify);

Copyright © 2019 Unixus Solutions Sdn. Bhd. All rights reserved.