public Oeds BuildFromRow(DataRow row) { var returnRecord = Oeds.BuildOedsFromRow(row); returnRecord = this.BuildExtraFromRow <Oeds>(returnRecord, row); return(returnRecord); }
public Oeds Insert(Oeds record) { DataRow row = this.dataSet.ttbloeds.NewttbloedsRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttbloeds.AddttbloedsRow((pdsoedsDataSet.ttbloedsRow)row); this.SaveChanges(); return(this.dataSet.ttbloeds.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloeds.Rows[0]) : null); }
public Oeds GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Oeds oeds = null; if (row != null) { oeds = this.BuildFromRow(row); } return(oeds); }
protected Oeds Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttbloeds.AsEnumerable().SingleOrDefault(); Oeds oeds = null; if (row != null) { oeds = this.BuildFromRow(row); } return(oeds); }
public void Delete(Oeds record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttbloeds.NewttbloedsRow(); Oeds.BuildMinimalRow(ref row, record); this.dataSet.ttbloeds.AddttbloedsRow((pdsoedsDataSet.ttbloedsRow)row); } row.Delete(); this.SaveChanges(); }
public Oeds Update(Oeds 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.ttbloeds.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloeds.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Oeds record) { this.adapter.Delete(record); }
public Oeds Update(Oeds record) { return(this.adapter.Update(record)); }
public Oeds Insert(Oeds record) { return(this.adapter.Insert(record)); }
public Oeds Insert(Oeds record) { return(this.repository.Insert(record)); }
public void Delete(Oeds record) { this.repository.Delete(record); }
public Oeds Update(Oeds record) { return(this.repository.Update(record)); }
public void UpdateToRow(ref DataRow row, Oeds record) { Oeds.UpdateRowFromOeds(ref row, record); this.ExtraUpdateToRow(ref row, record); }