Пример #1
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _productCategoryId   = reader.Read <string>("ProductCategoryId");
     _productCategoryName = reader.Read <string>("ProductCategoryName");
     _parent = reader.Read <Categories>("Parent");
 }
Пример #2
0
 /// <summary>
 /// Sets the Parent property.
 /// </summary>
 /// <param name="parent">Parent property.</param>
 /// <returns>this instance.</returns>
 public Categories WithParent(Categories parent)
 {
     this._parent = parent;
     return(this);
 }