public EodSetup BuildFromRow(DataRow row) { var returnRecord = EodSetup.BuildEodSetupFromRow(row); returnRecord = this.BuildExtraFromRow <EodSetup>(returnRecord, row); return(returnRecord); }
public EodSetup Insert(EodSetup record) { DataRow row = this.dataSet.ttbleod_setup.Newttbleod_setupRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttbleod_setup.Addttbleod_setupRow((pdseod_setupDataSet.ttbleod_setupRow)row); this.SaveChanges(); return(this.dataSet.ttbleod_setup.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbleod_setup.Rows[0]) : null); }
public EodSetup GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); EodSetup eodSetup = null; if (row != null) { eodSetup = this.BuildFromRow(row); } return(eodSetup); }
protected EodSetup Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttbleod_setup.AsEnumerable().SingleOrDefault(); EodSetup eodSetup = null; if (row != null) { eodSetup = this.BuildFromRow(row); } return(eodSetup); }
public void Delete(EodSetup record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttbleod_setup.Newttbleod_setupRow(); EodSetup.BuildMinimalRow(ref row, record); this.dataSet.ttbleod_setup.Addttbleod_setupRow((pdseod_setupDataSet.ttbleod_setupRow)row); } row.Delete(); this.SaveChanges(); }
public EodSetup Update(EodSetup record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row != null) { this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.SaveChanges(); return(this.dataSet.ttbleod_setup.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbleod_setup.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void UpdateToRow(ref DataRow row, EodSetup record) { EodSetup.UpdateRowFromEodSetup(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public EodSetup Update(EodSetup record) { return(this.repository.Update(record)); }
public EodSetup Insert(EodSetup record) { return(this.repository.Insert(record)); }
public void Delete(EodSetup record) { this.repository.Delete(record); }
public void Delete(EodSetup record) { this.adapter.Delete(record); }
public EodSetup Update(EodSetup record) { return(this.adapter.Update(record)); }
public EodSetup Insert(EodSetup record) { return(this.adapter.Insert(record)); }