示例#1
0
 public GetShipmentResult(Shipment shipment) : base()
 {
     this._shipment = shipment;
 }
示例#2
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _shipment = reader.Read <Shipment>("Shipment");
 }
 public CancelShipmentResult(Shipment shipment) : base()
 {
     this._shipment = shipment;
 }
示例#4
0
 /// <summary>
 /// Sets the Shipment property.
 /// </summary>
 /// <param name="shipment">Shipment property.</param>
 /// <returns>this instance.</returns>
 public GetShipmentResult WithShipment(Shipment shipment)
 {
     this._shipment = shipment;
     return(this);
 }
示例#5
0
 public CreateShipmentResult(Shipment shipment) : base()
 {
     this._shipment = shipment;
 }