Exemplo n.º 1
0
 public GetShipmentResult(Shipment shipment) : base()
 {
     this._shipment = shipment;
 }
Exemplo n.º 2
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _shipment = reader.Read <Shipment>("Shipment");
 }
 public CancelShipmentResult(Shipment shipment) : base()
 {
     this._shipment = shipment;
 }
Exemplo n.º 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);
 }
Exemplo n.º 5
0
 public CreateShipmentResult(Shipment shipment) : base()
 {
     this._shipment = shipment;
 }