public virtual int Update(NMonitoringDataSet dataSet) { return this.Adapter.Update(dataSet, "METHOD_CALL"); }
public virtual int Update(NMonitoringDataSet.METHOD_CALLDataTable dataTable) { return this.Adapter.Update(dataTable); }
public virtual int Fill(NMonitoringDataSet.METHOD_CALLDataTable dataTable) { this.Adapter.SelectCommand = this.CommandCollection[0]; if ((this.ClearBeforeFill == true)) { dataTable.Clear(); } int returnValue = this.Adapter.Fill(dataTable); return returnValue; }
public virtual int Update(NMonitoringDataSet dataSet) { return this.Adapter.Update(dataSet, "EXECUTION_FLOW"); }
public virtual int Update(NMonitoringDataSet.EXECUTION_FLOWDataTable dataTable) { return this.Adapter.Update(dataTable); }
public virtual int FillByID(NMonitoringDataSet.EXECUTION_FLOWDataTable dataTable, int ID) { this.Adapter.SelectCommand = this.CommandCollection[1]; this.Adapter.SelectCommand.Parameters[0].Value = ((int)(ID)); if ((this.ClearBeforeFill == true)) { dataTable.Clear(); } int returnValue = this.Adapter.Fill(dataTable); return returnValue; }