public Apss BuildFromRow(DataRow row) { var returnRecord = Apss.BuildApssFromRow(row); returnRecord = this.BuildExtraFromRow <Apss>(returnRecord, row); return(returnRecord); }
public Apss Insert(Apss record) { DataRow row = this.dataSet.ttblapss.NewttblapssRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblapss.AddttblapssRow((pdsapssDataSet.ttblapssRow)row); this.SaveChanges(); return(this.dataSet.ttblapss.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblapss.Rows[0]) : null); }
public Apss GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Apss apss = null; if (row != null) { apss = this.BuildFromRow(row); } return(apss); }
protected Apss Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblapss.AsEnumerable().SingleOrDefault(); Apss apss = null; if (row != null) { apss = this.BuildFromRow(row); } return(apss); }
private void DeleteUseRowID(Apss record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblapss.NewttblapssRow(); Apss.BuildMinimalRow(ref row, record); this.dataSet.ttblapss.AddttblapssRow((pdsapssDataSet.ttblapssRow)row); } row.Delete(); this.SaveChanges(); }
public Apss Update(Apss 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.ttblapss.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblapss.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Apss record) { this.repository.Delete(record); }
public Apss Update(Apss record) { return(this.repository.Update(record)); }
public Apss Insert(Apss record) { return(this.repository.Insert(record)); }
public Apss Insert(Apss record) { return(this.adapter.Insert(record)); }
public void Delete(Apss record) { this.adapter.Delete(record); }
public Apss Update(Apss record) { return(this.adapter.Update(record)); }
public void UpdateToRow(ref DataRow row, Apss record) { Apss.UpdateRowFromApss(ref row, record); this.ExtraUpdateToRow(ref row, record); }