Exemplo n.º 1
0
 /// <remarks/>
 public void UpdateClientDemographicsAsync(string SystemCode, string UserName, string Password, ClientDemographicsObject ClientDemographicsInfo, string ClientID) {
     this.UpdateClientDemographicsAsync(SystemCode, UserName, Password, ClientDemographicsInfo, ClientID, null);
 }
Exemplo n.º 2
0
 /// <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);
 }
Exemplo n.º 3
0
 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]));
 }