public virtual int Update(DeleteHistoryDataset dataSet) { return this.Adapter.Update(dataSet, "DeleteHistory"); }
public virtual int FillCustomerEmailsBy(DeleteHistoryDataset.DeleteHistoryDataTable dataTable, string ParentIdentity) { this.Adapter.SelectCommand = this.CommandCollection[1]; if ((ParentIdentity == null)) { this.Adapter.SelectCommand.Parameters[0].Value = System.DBNull.Value; } else { this.Adapter.SelectCommand.Parameters[0].Value = ((string)(ParentIdentity)); } if ((this.ClearBeforeFill == true)) { dataTable.Clear(); } int returnValue = this.Adapter.Fill(dataTable); return returnValue; }
public virtual int Update(DeleteHistoryDataset.DeleteHistoryDataTable dataTable) { return this.Adapter.Update(dataTable); }
public virtual int Fill(DeleteHistoryDataset.DeleteHistoryDataTable dataTable) { this.Adapter.SelectCommand = this.CommandCollection[0]; if ((this.ClearBeforeFill == true)) { dataTable.Clear(); } int returnValue = this.Adapter.Fill(dataTable); return returnValue; }