/// <remarks/> public void UpdateClientDemographicsAsync(string SystemCode, string UserName, string Password, ClientDemographicsObject ClientDemographicsInfo, string ClientID) { this.UpdateClientDemographicsAsync(SystemCode, UserName, Password, ClientDemographicsInfo, ClientID, null); }
/// <remarks/> public void UpdateClientDemographicsAsync(string SystemCode, string UserName, string Password, ClientDemographicsObject ClientDemographicsInfo, string ClientID, object userState) { if ((this.UpdateClientDemographicsOperationCompleted == null)) { this.UpdateClientDemographicsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateClientDemographicsOperationCompleted); } this.InvokeAsync("UpdateClientDemographics", new object[] { SystemCode, UserName, Password, ClientDemographicsInfo, ClientID}, this.UpdateClientDemographicsOperationCompleted, userState); }
public WebServiceResponse UpdateClientDemographics(string SystemCode, string UserName, string Password, ClientDemographicsObject ClientDemographicsInfo, string ClientID) { object[] results = this.Invoke("UpdateClientDemographics", new object[] { SystemCode, UserName, Password, ClientDemographicsInfo, ClientID}); return ((WebServiceResponse)(results[0])); }