MarketplaceWebServiceProducts.Model.CompetitivePriceList.WithCompetitivePrice C# (CSharp) 메소드

WithCompetitivePrice() 공개 메소드

Sets the CompetitivePrice property
public WithCompetitivePrice ( ) : CompetitivePriceList
리턴 CompetitivePriceList
        public CompetitivePriceList WithCompetitivePrice(params CompetitivePriceType[] list)
        {
            foreach (CompetitivePriceType item in list)
            {
                CompetitivePrice.Add(item);
            }
            return this;
        }