public static ShipmentOrder CreatePOD(string orderkey) { ShipmentOrder order = new ShipmentOrder(); ShipmentOrderHeader soh = new ShipmentOrderHeader(); soh.OrderKey = orderkey; order.ShipmentOrderHeader = soh; return order; }
public ShipmentOrder() { this.shipmentOrderHeaderField = new ShipmentOrderHeader(); }