public Apeba BuildFromRow(DataRow row) { var returnRecord = Apeba.BuildApebaFromRow(row); returnRecord = this.BuildExtraFromRow <Apeba>(returnRecord, row); return(returnRecord); }
public Apeba Insert(Apeba record) { DataRow row = this.dataSet.ttblapeba.NewttblapebaRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblapeba.AddttblapebaRow((pdsapebaDataSet.ttblapebaRow)row); this.SaveChanges(); return(this.dataSet.ttblapeba.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblapeba.Rows[0]) : null); }
public Apeba GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Apeba apeba = null; if (row != null) { apeba = this.BuildFromRow(row); } return(apeba); }
protected Apeba Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblapeba.AsEnumerable().SingleOrDefault(); Apeba apeba = null; if (row != null) { apeba = this.BuildFromRow(row); } return(apeba); }
public void Delete(Apeba record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblapeba.NewttblapebaRow(); Apeba.BuildMinimalRow(ref row, record); this.dataSet.ttblapeba.AddttblapebaRow((pdsapebaDataSet.ttblapebaRow)row); } row.Delete(); this.SaveChanges(); }
public Apeba Update(Apeba 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.ttblapeba.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblapeba.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Apeba record) { this.repository.Delete(record); }
public Apeba Update(Apeba record) { return(this.repository.Update(record)); }
public Apeba Insert(Apeba record) { return(this.repository.Insert(record)); }
public void UpdateToRow(ref DataRow row, Apeba record) { Apeba.UpdateRowFromApeba(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(Apeba record) { this.adapter.Delete(record); }
public Apeba Update(Apeba record) { return(this.adapter.Update(record)); }
public Apeba Insert(Apeba record) { return(this.adapter.Insert(record)); }