/// <remarks/>
 public void saveAsync(seat arg0, object userState)
 {
     if ((this.saveOperationCompleted == null))
     {
         this.saveOperationCompleted = new System.Threading.SendOrPostCallback(this.OnsaveOperationCompleted);
     }
     this.InvokeAsync("save", new object[] {
         arg0
     }, this.saveOperationCompleted, userState);
 }
 /// <remarks/>
 public void saveAsync(seat arg0)
 {
     this.saveAsync(arg0, null);
 }
 public void save([System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] seat arg0)
 {
     this.Invoke("save", new object[] {
         arg0
     });
 }