예제 #1
0
파일: Item.cs 프로젝트: kayoom/ProductData
 public Item()
 {
     Prices = new List<Price>();
     Availability = new Availability();
     Dimensions = new Dimensions();
     Shipping = new Shipping();
 }
예제 #2
0
 public Shipping()
 {
     ShippingTypes = new List<Ref>();
     ShippingDimensions = new Dimensions();
 }