Пример #1
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     this._totalOfferCount = reader.Read <decimal>("TotalOfferCount");
     this._numberOfOffers  = reader.Read <NumberOfOffers>("NumberOfOffers");
     this._lowestPrices    = reader.Read <LowestPrices>("LowestPrices");
     this._buyBoxPrices    = reader.Read <BuyBoxPrices>("BuyBoxPrices");
     this._listPrice       = reader.Read <MoneyType>("ListPrice");
     this._suggestedLowerPricePlusShipping = reader.Read <MoneyType>("SuggestedLowerPricePlusShipping");
     this._buyBoxEligibleOffers            = reader.Read <BuyBoxEligibleOffers>("BuyBoxEligibleOffers");
 }
Пример #2
0
 /// <summary>
 /// Sets the LowestPrices property.
 /// </summary>
 /// <param name="lowestPrices">LowestPrices property.</param>
 /// <returns>this instance.</returns>
 public Summary WithLowestPrices(LowestPrices lowestPrices)
 {
     this._lowestPrices = lowestPrices;
     return(this);
 }