public SerialHistory BuildFromRow(DataRow row) { var returnRecord = SerialHistory.BuildSerialHistoryFromRow(row); returnRecord = this.BuildExtraFromRow <SerialHistory>(returnRecord, row); return(returnRecord); }
public SerialHistory Insert(SerialHistory record) { DataRow row = this.dataSet.ttblserial_history.Newttblserial_historyRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblserial_history.Addttblserial_historyRow((pdsserial_historyDataSet.ttblserial_historyRow)row); this.SaveChanges(); return(this.dataSet.ttblserial_history.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblserial_history.Rows[0]) : null); }
public SerialHistory GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); SerialHistory serialHistory = null; if (row != null) { serialHistory = this.BuildFromRow(row); } return(serialHistory); }
protected SerialHistory Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblserial_history.AsEnumerable().SingleOrDefault(); SerialHistory serialHistory = null; if (row != null) { serialHistory = this.BuildFromRow(row); } return(serialHistory); }
public void Delete(SerialHistory record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblserial_history.Newttblserial_historyRow(); SerialHistory.BuildMinimalRow(ref row, record); this.dataSet.ttblserial_history.Addttblserial_historyRow((pdsserial_historyDataSet.ttblserial_historyRow)row); } row.Delete(); this.SaveChanges(); }
public SerialHistory Update(SerialHistory 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.ttblserial_history.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblserial_history.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(SerialHistory record) { this.adapter.Delete(record); }
public SerialHistory Update(SerialHistory record) { return(this.adapter.Update(record)); }
public SerialHistory Insert(SerialHistory record) { return(this.adapter.Insert(record)); }
public void UpdateToRow(ref DataRow row, SerialHistory record) { SerialHistory.UpdateRowFromSerialHistory(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(SerialHistory record) { this.repository.Delete(record); }
public SerialHistory Update(SerialHistory record) { return(this.repository.Update(record)); }
public SerialHistory Insert(SerialHistory record) { return(this.repository.Insert(record)); }