Beispiel #1
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _identifiers         = reader.Read <IdentifierType>("Identifiers");
     _attributeSets       = reader.Read <AttributeSetList>("AttributeSets");
     _relationships       = reader.Read <RelationshipList>("Relationships");
     _competitivePricing  = reader.Read <CompetitivePricingType>("CompetitivePricing");
     _salesRankings       = reader.Read <SalesRankList>("SalesRankings");
     _lowestOfferListings = reader.Read <LowestOfferListingList>("LowestOfferListings");
     _offers = reader.Read <OffersList>("Offers");
 }
Beispiel #2
0
 /// <summary>
 /// Sets the Identifiers property.
 /// </summary>
 /// <param name="identifiers">Identifiers property.</param>
 /// <returns>this instance.</returns>
 public Product WithIdentifiers(IdentifierType identifiers)
 {
     this._identifiers = identifiers;
     return(this);
 }
Beispiel #3
0
 public Product(IdentifierType identifiers) : base()
 {
     this._identifiers = identifiers;
 }