public virtual DataSet.LVLDataTable GetDataById(long Id) { this.Adapter.SelectCommand = this.CommandCollection[1]; this.Adapter.SelectCommand.Parameters[0].Value = ((long)(Id)); DataSet.LVLDataTable dataTable = new DataSet.LVLDataTable(); this.Adapter.Fill(dataTable); return dataTable; }
public virtual DataSet.LVLDataTable GetData() { this.Adapter.SelectCommand = this.CommandCollection[0]; DataSet.LVLDataTable dataTable = new DataSet.LVLDataTable(); this.Adapter.Fill(dataTable); return dataTable; }