public Icsgv BuildFromRow(DataRow row) { var returnRecord = Icsgv.BuildIcsgvFromRow(row); returnRecord = this.BuildExtraFromRow <Icsgv>(returnRecord, row); return(returnRecord); }
public Icsgv Insert(Icsgv record) { DataRow row = this.dataSet.ttblicsgv.NewttblicsgvRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblicsgv.AddttblicsgvRow((pdsicsgvDataSet.ttblicsgvRow)row); this.SaveChanges(); return(this.dataSet.ttblicsgv.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicsgv.Rows[0]) : null); }
public Icsgv GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Icsgv icsgv = null; if (row != null) { icsgv = this.BuildFromRow(row); } return(icsgv); }
protected Icsgv Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblicsgv.AsEnumerable().SingleOrDefault(); Icsgv icsgv = null; if (row != null) { icsgv = this.BuildFromRow(row); } return(icsgv); }
public void Delete(Icsgv record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblicsgv.NewttblicsgvRow(); Icsgv.BuildMinimalRow(ref row, record); this.dataSet.ttblicsgv.AddttblicsgvRow((pdsicsgvDataSet.ttblicsgvRow)row); } row.Delete(); this.SaveChanges(); }
public Icsgv Update(Icsgv 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.ttblicsgv.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicsgv.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void UpdateToRow(ref DataRow row, Icsgv record) { Icsgv.UpdateRowFromIcsgv(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(Icsgv record) { this.repository.Delete(record); }
public Icsgv Update(Icsgv record) { return(this.repository.Update(record)); }
public Icsgv Insert(Icsgv record) { return(this.repository.Insert(record)); }
public void Delete(Icsgv record) { this.adapter.Delete(record); }
public Icsgv Update(Icsgv record) { return(this.adapter.Update(record)); }
public Icsgv Insert(Icsgv record) { return(this.adapter.Insert(record)); }