예제 #1
0
파일: Reference.cs 프로젝트: kevinfyc/yoga
 /// <remarks/>
 public void UpdateAsync(PotentialMember c, object userState) {
     if ((this.UpdateOperationCompleted == null)) {
         this.UpdateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateOperationCompleted);
     }
     this.InvokeAsync("Update", new object[] {
                 c}, this.UpdateOperationCompleted, userState);
 }
예제 #2
0
파일: Reference.cs 프로젝트: kevinfyc/yoga
 public string Update(PotentialMember c) {
     object[] results = this.Invoke("Update", new object[] {
                 c});
     return ((string)(results[0]));
 }
예제 #3
0
파일: Reference.cs 프로젝트: kevinfyc/yoga
 /// <remarks/>
 public void UpdateAsync(PotentialMember c) {
     this.UpdateAsync(c, null);
 }
예제 #4
0
파일: Reference.cs 프로젝트: kevinfyc/yoga
 /// <remarks/>
 public void SearchAsync(PotentialMember c, bool includeNULLAid, int page, int pageSize, object userState) {
     if ((this.SearchOperationCompleted == null)) {
         this.SearchOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSearchOperationCompleted);
     }
     this.InvokeAsync("Search", new object[] {
                 c,
                 includeNULLAid,
                 page,
                 pageSize}, this.SearchOperationCompleted, userState);
 }
예제 #5
0
파일: Reference.cs 프로젝트: kevinfyc/yoga
 /// <remarks/>
 public void SearchAsync(PotentialMember c, bool includeNULLAid, int page, int pageSize) {
     this.SearchAsync(c, includeNULLAid, page, pageSize, null);
 }
예제 #6
0
파일: Reference.cs 프로젝트: kevinfyc/yoga
 public PotentialMember[] Search(PotentialMember c, bool includeNULLAid, ref int page, int pageSize, out int totalPages) {
     object[] results = this.Invoke("Search", new object[] {
                 c,
                 includeNULLAid,
                 page,
                 pageSize});
     page = ((int)(results[1]));
     totalPages = ((int)(results[2]));
     return ((PotentialMember[])(results[0]));
 }
예제 #7
0
파일: Reference.cs 프로젝트: kevinfyc/yoga
 /// <remarks/>
 public void AddAsync(PotentialMember c) {
     this.AddAsync(c, null);
 }
예제 #8
0
파일: Reference.cs 프로젝트: kevinfyc/yoga
 public int Add(PotentialMember c) {
     object[] results = this.Invoke("Add", new object[] {
                 c});
     return ((int)(results[0]));
 }