Example #1
0
 /// <remarks/>
 public void GetAppointmentsAsync(string SystemCode, string UserName, string Password, GetAppointmentsObject GetAppointmentsInfo) {
     this.GetAppointmentsAsync(SystemCode, UserName, Password, GetAppointmentsInfo, null);
 }
Example #2
0
 /// <remarks/>
 public void GetAppointmentsAsync(string SystemCode, string UserName, string Password, GetAppointmentsObject GetAppointmentsInfo, object userState) {
     if ((this.GetAppointmentsOperationCompleted == null)) {
         this.GetAppointmentsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetAppointmentsOperationCompleted);
     }
     this.InvokeAsync("GetAppointments", new object[] {
                 SystemCode,
                 UserName,
                 Password,
                 GetAppointmentsInfo}, this.GetAppointmentsOperationCompleted, userState);
 }
Example #3
0
 public AppointmentObject[] GetAppointments(string SystemCode, string UserName, string Password, GetAppointmentsObject GetAppointmentsInfo) {
     object[] results = this.Invoke("GetAppointments", new object[] {
                 SystemCode,
                 UserName,
                 Password,
                 GetAppointmentsInfo});
     return ((AppointmentObject[])(results[0]));
 }