public Icsgr BuildFromRow(DataRow row) { var returnRecord = Icsgr.BuildIcsgrFromRow(row); returnRecord = this.BuildExtraFromRow <Icsgr>(returnRecord, row); return(returnRecord); }
public Icsgr Insert(Icsgr record) { DataRow row = this.dataSet.ttblicsgr.NewttblicsgrRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblicsgr.AddttblicsgrRow((pdsicsgrDataSet.ttblicsgrRow)row); this.SaveChanges(); return(this.dataSet.ttblicsgr.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicsgr.Rows[0]) : null); }
public Icsgr GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Icsgr icsgr = null; if (row != null) { icsgr = this.BuildFromRow(row); } return(icsgr); }
protected Icsgr Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblicsgr.AsEnumerable().SingleOrDefault(); Icsgr icsgr = null; if (row != null) { icsgr = this.BuildFromRow(row); } return(icsgr); }
public void Delete(Icsgr record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblicsgr.NewttblicsgrRow(); Icsgr.BuildMinimalRow(ref row, record); this.dataSet.ttblicsgr.AddttblicsgrRow((pdsicsgrDataSet.ttblicsgrRow)row); } row.Delete(); this.SaveChanges(); }
public Icsgr Update(Icsgr 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.ttblicsgr.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicsgr.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public Icsgr Insert(Icsgr record) { return(this.repository.Insert(record)); }
public void Delete(Icsgr record) { this.repository.Delete(record); }
public Icsgr Update(Icsgr record) { return(this.repository.Update(record)); }
public void Delete(Icsgr record) { this.adapter.Delete(record); }
public Icsgr Update(Icsgr record) { return(this.adapter.Update(record)); }
public Icsgr Insert(Icsgr record) { return(this.adapter.Insert(record)); }
public void UpdateToRow(ref DataRow row, Icsgr record) { Icsgr.UpdateRowFromIcsgr(ref row, record); this.ExtraUpdateToRow(ref row, record); }