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