public PvPdmmatrix BuildFromRow(DataRow row) { var returnRecord = PvPdmmatrix.BuildPvPdmmatrixFromRow(row); returnRecord = this.BuildExtraFromRow <PvPdmmatrix>(returnRecord, row); return(returnRecord); }
public PvPdmmatrix Insert(PvPdmmatrix record) { DataRow row = this.dataSet.ttblpv_pdmmatrix.Newttblpv_pdmmatrixRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblpv_pdmmatrix.Addttblpv_pdmmatrixRow((pdspv_pdmmatrixDataSet.ttblpv_pdmmatrixRow)row); this.SaveChanges(); return(this.dataSet.ttblpv_pdmmatrix.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpv_pdmmatrix.Rows[0]) : null); }
public PvPdmmatrix GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); PvPdmmatrix pvPdmmatrix = null; if (row != null) { pvPdmmatrix = this.BuildFromRow(row); } return(pvPdmmatrix); }
protected PvPdmmatrix Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblpv_pdmmatrix.AsEnumerable().SingleOrDefault(); PvPdmmatrix pvPdmmatrix = null; if (row != null) { pvPdmmatrix = this.BuildFromRow(row); } return(pvPdmmatrix); }
public void Delete(PvPdmmatrix record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblpv_pdmmatrix.Newttblpv_pdmmatrixRow(); PvPdmmatrix.BuildMinimalRow(ref row, record); this.dataSet.ttblpv_pdmmatrix.Addttblpv_pdmmatrixRow((pdspv_pdmmatrixDataSet.ttblpv_pdmmatrixRow)row); } row.Delete(); this.SaveChanges(); }
public PvPdmmatrix Update(PvPdmmatrix 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.ttblpv_pdmmatrix.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpv_pdmmatrix.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void UpdateToRow(ref DataRow row, PvPdmmatrix record) { PvPdmmatrix.UpdateRowFromPvPdmmatrix(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(PvPdmmatrix record) { this.adapter.Delete(record); }
public PvPdmmatrix Update(PvPdmmatrix record) { return(this.adapter.Update(record)); }
public PvPdmmatrix Insert(PvPdmmatrix record) { return(this.adapter.Insert(record)); }
public PvPdmmatrix Insert(PvPdmmatrix record) { return(this.repository.Insert(record)); }
public void Delete(PvPdmmatrix record) { this.repository.Delete(record); }
public PvPdmmatrix Update(PvPdmmatrix record) { return(this.repository.Update(record)); }