コード例 #1
0
ファイル: Reference.cs プロジェクト: wgang10/XTHospatal
 /// <remarks/>
 public void AddUpdateFemeAsync(Feme model) {
     this.AddUpdateFemeAsync(model, null);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: wgang10/XTHospatal
 /// <remarks/>
 public void AddUpdateFemeAsync(Feme model, object userState) {
     if ((this.AddUpdateFemeOperationCompleted == null)) {
         this.AddUpdateFemeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddUpdateFemeOperationCompleted);
     }
     this.InvokeAsync("AddUpdateFeme", new object[] {
                 model}, this.AddUpdateFemeOperationCompleted, userState);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: wgang10/XTHospatal
 public ReturnValue AddUpdateFeme(Feme model) {
     object[] results = this.Invoke("AddUpdateFeme", new object[] {
                 model});
     return ((ReturnValue)(results[0]));
 }