public Poelo BuildFromRow(DataRow row) { var returnRecord = Poelo.BuildPoeloFromRow(row); returnRecord = this.BuildExtraFromRow <Poelo>(returnRecord, row); return(returnRecord); }
public Poelo Insert(Poelo record) { DataRow row = this.dataSet.ttblpoelo.NewttblpoeloRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblpoelo.AddttblpoeloRow((pdspoeloDataSet.ttblpoeloRow)row); this.SaveChanges(); return(this.dataSet.ttblpoelo.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpoelo.Rows[0]) : null); }
public Poelo GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Poelo poelo = null; if (row != null) { poelo = this.BuildFromRow(row); } return(poelo); }
protected Poelo Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblpoelo.AsEnumerable().SingleOrDefault(); Poelo poelo = null; if (row != null) { poelo = this.BuildFromRow(row); } return(poelo); }
public void Delete(Poelo record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblpoelo.NewttblpoeloRow(); Poelo.BuildMinimalRow(ref row, record); this.dataSet.ttblpoelo.AddttblpoeloRow((pdspoeloDataSet.ttblpoeloRow)row); } row.Delete(); this.SaveChanges(); }
public Poelo Update(Poelo 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.ttblpoelo.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpoelo.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Poelo record) { this.adapter.Delete(record); }
public Poelo Update(Poelo record) { return(this.adapter.Update(record)); }
public Poelo Insert(Poelo record) { return(this.adapter.Insert(record)); }
public void Delete(Poelo record) { this.repository.Delete(record); }
public Poelo Update(Poelo record) { return(this.repository.Update(record)); }
public Poelo Insert(Poelo record) { return(this.repository.Insert(record)); }
public void UpdateToRow(ref DataRow row, Poelo record) { Poelo.UpdateRowFromPoelo(ref row, record); this.ExtraUpdateToRow(ref row, record); }