public Oeehextra BuildFromRow(DataRow row) { var returnRecord = Oeehextra.BuildOeehextraFromRow(row); returnRecord = this.BuildExtraFromRow <Oeehextra>(returnRecord, row); return(returnRecord); }
public Oeehextra Insert(Oeehextra record) { DataRow row = this.dataSet.ttbloeehextra.NewttbloeehextraRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttbloeehextra.AddttbloeehextraRow((pdsoeehextraDataSet.ttbloeehextraRow)row); this.SaveChanges(); return(this.dataSet.ttbloeehextra.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloeehextra.Rows[0]) : null); }
public Oeehextra GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Oeehextra oeehextra = null; if (row != null) { oeehextra = this.BuildFromRow(row); } return(oeehextra); }
protected Oeehextra Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttbloeehextra.AsEnumerable().SingleOrDefault(); Oeehextra oeehextra = null; if (row != null) { oeehextra = this.BuildFromRow(row); } return(oeehextra); }
public void Delete(Oeehextra record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttbloeehextra.NewttbloeehextraRow(); Oeehextra.BuildMinimalRow(ref row, record); this.dataSet.ttbloeehextra.AddttbloeehextraRow((pdsoeehextraDataSet.ttbloeehextraRow)row); } row.Delete(); this.SaveChanges(); }
public Oeehextra Update(Oeehextra 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.ttbloeehextra.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloeehextra.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Oeehextra record) { this.adapter.Delete(record); }
public Oeehextra Update(Oeehextra record) { return(this.adapter.Update(record)); }
public Oeehextra Insert(Oeehextra record) { return(this.adapter.Insert(record)); }
public Oeehextra Insert(Oeehextra record) { return(this.repository.Insert(record)); }
public void Delete(Oeehextra record) { this.repository.Delete(record); }
public Oeehextra Update(Oeehextra record) { return(this.repository.Update(record)); }
public void UpdateToRow(ref DataRow row, Oeehextra record) { Oeehextra.UpdateRowFromOeehextra(ref row, record); this.ExtraUpdateToRow(ref row, record); }