public Icamapm BuildFromRow(DataRow row) { var returnRecord = Icamapm.BuildIcamapmFromRow(row); returnRecord = this.BuildExtraFromRow <Icamapm>(returnRecord, row); return(returnRecord); }
public Icamapm Insert(Icamapm record) { DataRow row = this.dataSet.ttblicamapm.NewttblicamapmRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblicamapm.AddttblicamapmRow((pdsicamapmDataSet.ttblicamapmRow)row); this.SaveChanges(); return(this.dataSet.ttblicamapm.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicamapm.Rows[0]) : null); }
public Icamapm GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Icamapm icamapm = null; if (row != null) { icamapm = this.BuildFromRow(row); } return(icamapm); }
protected Icamapm Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblicamapm.AsEnumerable().SingleOrDefault(); Icamapm icamapm = null; if (row != null) { icamapm = this.BuildFromRow(row); } return(icamapm); }
public void Delete(Icamapm record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblicamapm.NewttblicamapmRow(); Icamapm.BuildMinimalRow(ref row, record); this.dataSet.ttblicamapm.AddttblicamapmRow((pdsicamapmDataSet.ttblicamapmRow)row); } row.Delete(); this.SaveChanges(); }
public Icamapm Update(Icamapm 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.ttblicamapm.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicamapm.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Icamapm record) { this.adapter.Delete(record); }
public Icamapm Update(Icamapm record) { return(this.adapter.Update(record)); }
public Icamapm Insert(Icamapm record) { return(this.adapter.Insert(record)); }
public void Delete(Icamapm record) { this.repository.Delete(record); }
public Icamapm Update(Icamapm record) { return(this.repository.Update(record)); }
public Icamapm Insert(Icamapm record) { return(this.repository.Insert(record)); }
public void UpdateToRow(ref DataRow row, Icamapm record) { Icamapm.UpdateRowFromIcamapm(ref row, record); this.ExtraUpdateToRow(ref row, record); }