public Oedc BuildFromRow(DataRow row) { var returnRecord = Oedc.BuildOedcFromRow(row); returnRecord = this.BuildExtraFromRow <Oedc>(returnRecord, row); return(returnRecord); }
public Oedc Insert(Oedc record) { DataRow row = this.dataSet.ttbloedc.NewttbloedcRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttbloedc.AddttbloedcRow((pdsoedcDataSet.ttbloedcRow)row); this.SaveChanges(); return(this.dataSet.ttbloedc.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloedc.Rows[0]) : null); }
public Oedc GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Oedc oedc = null; if (row != null) { oedc = this.BuildFromRow(row); } return(oedc); }
protected Oedc Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttbloedc.AsEnumerable().SingleOrDefault(); Oedc oedc = null; if (row != null) { oedc = this.BuildFromRow(row); } return(oedc); }
public void Delete(Oedc record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttbloedc.NewttbloedcRow(); Oedc.BuildMinimalRow(ref row, record); this.dataSet.ttbloedc.AddttbloedcRow((pdsoedcDataSet.ttbloedcRow)row); } row.Delete(); this.SaveChanges(); }
public Oedc Update(Oedc 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.ttbloedc.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloedc.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void UpdateToRow(ref DataRow row, Oedc record) { Oedc.UpdateRowFromOedc(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(Oedc record) { this.adapter.Delete(record); }
public Oedc Update(Oedc record) { return(this.adapter.Update(record)); }
public Oedc Insert(Oedc record) { return(this.adapter.Insert(record)); }
public Oedc Insert(Oedc record) { return(this.repository.Insert(record)); }
public void Delete(Oedc record) { this.repository.Delete(record); }
public Oedc Update(Oedc record) { return(this.repository.Update(record)); }