public IS_Response1 UpdateInventory(IS_Request1 Request)
    {
        object[] results = this.Invoke("UpdateInventory", new object[] {
            Request
        });

        return((IS_Response1)(results[0]));
    }
 /// <remarks/>
 public void UpdateInventoryAsync(IS_Request1 Request, object userState)
 {
     if ((this.UpdateInventoryOperationCompleted == null))
     {
         this.UpdateInventoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateInventoryOperationCompleted);
     }
     this.InvokeAsync("UpdateInventory", new object[] {
         Request
     }, this.UpdateInventoryOperationCompleted, userState);
 }
 /// <remarks/>
 public void UpdateInventoryAsync(IS_Request1 Request)
 {
     this.UpdateInventoryAsync(Request, null);
 }
 /// <remarks/>
 public System.IAsyncResult BeginUpdateInventory(IS_Request1 Request, System.AsyncCallback callback, object asyncState)
 {
     return(this.BeginInvoke("UpdateInventory", new object[] {
         Request
     }, callback, asyncState));
 }