public Icspr BuildFromRow(DataRow row) { var returnRecord = Icspr.BuildIcsprFromRow(row); returnRecord = this.BuildExtraFromRow <Icspr>(returnRecord, row); return(returnRecord); }
public Icspr Insert(Icspr record) { DataRow row = this.dataSet.ttblicspr.NewttblicsprRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblicspr.AddttblicsprRow((pdsicsprDataSet.ttblicsprRow)row); this.SaveChanges(); return(this.dataSet.ttblicspr.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicspr.Rows[0]) : null); }
public Icspr GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Icspr icspr = null; if (row != null) { icspr = this.BuildFromRow(row); } return(icspr); }
protected Icspr Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblicspr.AsEnumerable().SingleOrDefault(); Icspr icspr = null; if (row != null) { icspr = this.BuildFromRow(row); } return(icspr); }
private void DeleteUseRowID(Icspr record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblicspr.NewttblicsprRow(); Icspr.BuildMinimalRow(ref row, record); this.dataSet.ttblicspr.AddttblicsprRow((pdsicsprDataSet.ttblicsprRow)row); } row.Delete(); this.SaveChanges(); }
public Icspr Update(Icspr record) { var row = this.GetRowByRowpointer(record.rowpointer, string.Empty); if (row != null) { this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.SaveChanges(); return(this.dataSet.ttblicspr.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicspr.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public Icspr Update(Icspr record) { return(this.adapter.Update(record)); }
public Icspr Insert(Icspr record) { return(this.adapter.Insert(record)); }
public void Delete(Icspr record) { this.adapter.Delete(record); }
public void Delete(Icspr record) { this.repository.Delete(record); }
public Icspr Update(Icspr record) { return(this.repository.Update(record)); }
public Icspr Insert(Icspr record) { return(this.repository.Insert(record)); }
public void UpdateToRow(ref DataRow row, Icspr record) { Icspr.UpdateRowFromIcspr(ref row, record); this.ExtraUpdateToRow(ref row, record); }