public bool catalogProductUpdate(string sessionId, string product, catalogProductCreateEntity productData, string storeView, string identifierType)
 {
     object[] results = this.Invoke("catalogProductUpdate", new object[] {
                 sessionId,
                 product,
                 productData,
                 storeView,
                 identifierType});
     return ((bool)(results[0]));
 }
 /// <remarks/>
 public System.IAsyncResult BegincatalogProductUpdate(string sessionId, string product, catalogProductCreateEntity productData, string storeView, string identifierType, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("catalogProductUpdate", new object[] {
                 sessionId,
                 product,
                 productData,
                 storeView,
                 identifierType}, callback, asyncState);
 }
 public int catalogProductCreate(string sessionId, string type, string set, string sku, catalogProductCreateEntity productData, string storeView)
 {
     object[] results = this.Invoke("catalogProductCreate", new object[] {
                 sessionId,
                 type,
                 set,
                 sku,
                 productData,
                 storeView});
     return ((int)(results[0]));
 }
 /// <remarks/>
 public System.IAsyncResult BegincatalogProductCreate(string sessionId, string type, string set, string sku, catalogProductCreateEntity productData, string storeView, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("catalogProductCreate", new object[] {
                 sessionId,
                 type,
                 set,
                 sku,
                 productData,
                 storeView}, callback, asyncState);
 }