public Rtdet BuildFromRow(DataRow row) { var returnRecord = Rtdet.BuildRtdetFromRow(row); returnRecord = this.BuildExtraFromRow <Rtdet>(returnRecord, row); return(returnRecord); }
public Rtdet Insert(Rtdet record) { DataRow row = this.dataSet.ttblrtdet.NewttblrtdetRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblrtdet.AddttblrtdetRow((pdsrtdetDataSet.ttblrtdetRow)row); this.SaveChanges(); return(this.dataSet.ttblrtdet.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblrtdet.Rows[0]) : null); }
public Rtdet GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Rtdet rtdet = null; if (row != null) { rtdet = this.BuildFromRow(row); } return(rtdet); }
protected Rtdet Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblrtdet.AsEnumerable().SingleOrDefault(); Rtdet rtdet = null; if (row != null) { rtdet = this.BuildFromRow(row); } return(rtdet); }
public void Delete(Rtdet record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblrtdet.NewttblrtdetRow(); Rtdet.BuildMinimalRow(ref row, record); this.dataSet.ttblrtdet.AddttblrtdetRow((pdsrtdetDataSet.ttblrtdetRow)row); } row.Delete(); this.SaveChanges(); }
public Rtdet Update(Rtdet 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.ttblrtdet.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblrtdet.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void UpdateToRow(ref DataRow row, Rtdet record) { Rtdet.UpdateRowFromRtdet(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public Rtdet Insert(Rtdet record) { return(this.adapter.Insert(record)); }
public void Delete(Rtdet record) { this.adapter.Delete(record); }
public Rtdet Update(Rtdet record) { return(this.adapter.Update(record)); }
public void Delete(Rtdet record) { this.repository.Delete(record); }
public Rtdet Update(Rtdet record) { return(this.repository.Update(record)); }
public Rtdet Insert(Rtdet record) { return(this.repository.Insert(record)); }