public Rsad BuildFromRow(DataRow row) { var returnRecord = Rsad.BuildRsadFromRow(row); returnRecord = this.BuildExtraFromRow <Rsad>(returnRecord, row); return(returnRecord); }
public Rsad Insert(Rsad record) { DataRow row = this.dataSet.ttblrsad.NewttblrsadRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblrsad.AddttblrsadRow((pdsrsadDataSet.ttblrsadRow)row); this.SaveChanges(); return(this.dataSet.ttblrsad.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblrsad.Rows[0]) : null); }
public Rsad GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Rsad rsad = null; if (row != null) { rsad = this.BuildFromRow(row); } return(rsad); }
protected Rsad Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblrsad.AsEnumerable().SingleOrDefault(); Rsad rsad = null; if (row != null) { rsad = this.BuildFromRow(row); } return(rsad); }
public void Delete(Rsad record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblrsad.NewttblrsadRow(); Rsad.BuildMinimalRow(ref row, record); this.dataSet.ttblrsad.AddttblrsadRow((pdsrsadDataSet.ttblrsadRow)row); } row.Delete(); this.SaveChanges(); }
public Rsad Update(Rsad 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.ttblrsad.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblrsad.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Rsad record) { this.adapter.Delete(record); }
public Rsad Update(Rsad record) { return(this.adapter.Update(record)); }
public Rsad Insert(Rsad record) { return(this.adapter.Insert(record)); }
public void UpdateToRow(ref DataRow row, Rsad record) { Rsad.UpdateRowFromRsad(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public Rsad Insert(Rsad record) { return(this.repository.Insert(record)); }
public void Delete(Rsad record) { this.repository.Delete(record); }
public Rsad Update(Rsad record) { return(this.repository.Update(record)); }