/// <remarks/> public void UpdateAsync(Collect c, object userState) { if ((this.UpdateOperationCompleted == null)) { this.UpdateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateOperationCompleted); } this.InvokeAsync("Update", new object[] { c}, this.UpdateOperationCompleted, userState); }
public int Add(Collect a) { object[] results = this.Invoke("Add", new object[] { a}); return ((int)(results[0])); }
public string Update(Collect c) { object[] results = this.Invoke("Update", new object[] { c}); return ((string)(results[0])); }
/// <remarks/> public void UpdateAsync(Collect c) { this.UpdateAsync(c, null); }
/// <remarks/> public void SearchAsync(Collect c, System.DateTime dateStart, System.DateTime dateEnd, int page, int pageSize, object userState) { if ((this.SearchOperationCompleted == null)) { this.SearchOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSearchOperationCompleted); } this.InvokeAsync("Search", new object[] { c, dateStart, dateEnd, page, pageSize}, this.SearchOperationCompleted, userState); }
/// <remarks/> public void SearchAsync(Collect c, System.DateTime dateStart, System.DateTime dateEnd, int page, int pageSize) { this.SearchAsync(c, dateStart, dateEnd, page, pageSize, null); }
public Collect[] Search(Collect c, System.DateTime dateStart, System.DateTime dateEnd, ref int page, int pageSize, out int totalPages) { object[] results = this.Invoke("Search", new object[] { c, dateStart, dateEnd, page, pageSize}); page = ((int)(results[1])); totalPages = ((int)(results[2])); return ((Collect[])(results[0])); }
/// <remarks/> public void AddAsync(Collect a, object userState) { if ((this.AddOperationCompleted == null)) { this.AddOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddOperationCompleted); } this.InvokeAsync("Add", new object[] { a}, this.AddOperationCompleted, userState); }
/// <remarks/> public void AddAsync(Collect a) { this.AddAsync(a, null); }