public Oerbt BuildFromRow(DataRow row) { var returnRecord = Oerbt.BuildOerbtFromRow(row); returnRecord = this.BuildExtraFromRow <Oerbt>(returnRecord, row); return(returnRecord); }
public Oerbt Insert(Oerbt record) { DataRow row = this.dataSet.ttbloerbt.NewttbloerbtRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttbloerbt.AddttbloerbtRow((pdsoerbtDataSet.ttbloerbtRow)row); this.SaveChanges(); return(this.dataSet.ttbloerbt.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloerbt.Rows[0]) : null); }
public Oerbt GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Oerbt oerbt = null; if (row != null) { oerbt = this.BuildFromRow(row); } return(oerbt); }
protected Oerbt Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttbloerbt.AsEnumerable().SingleOrDefault(); Oerbt oerbt = null; if (row != null) { oerbt = this.BuildFromRow(row); } return(oerbt); }
public void Delete(Oerbt record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttbloerbt.NewttbloerbtRow(); Oerbt.BuildMinimalRow(ref row, record); this.dataSet.ttbloerbt.AddttbloerbtRow((pdsoerbtDataSet.ttbloerbtRow)row); } row.Delete(); this.SaveChanges(); }
public Oerbt Update(Oerbt 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.ttbloerbt.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloerbt.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Oerbt record) { this.repository.Delete(record); }
public Oerbt Update(Oerbt record) { return(this.repository.Update(record)); }
public Oerbt Insert(Oerbt record) { return(this.repository.Insert(record)); }
public void UpdateToRow(ref DataRow row, Oerbt record) { Oerbt.UpdateRowFromOerbt(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(Oerbt record) { this.adapter.Delete(record); }
public Oerbt Update(Oerbt record) { return(this.adapter.Update(record)); }
public Oerbt Insert(Oerbt record) { return(this.adapter.Insert(record)); }