using System; using System.Collections.Generic; using System.Linq; using System.Text; using HeuristicLab.DataAccess.ADOHelper; using System.Data.SqlClient; using HeuristicLab.Hive.Contracts.BusinessObjects; using System.Data.Common; namespace HeuristicLab.Hive.Server.ADODataAccess.TableAdapterWrapper { class JobResultsAdapterWrapper : TableAdapterWrapperBase { public override void UpdateRow(dsHiveServer.JobResultRow row) { TransactionalAdapter.Update(row); } public override dsHiveServer.JobResultRow InsertNewRow(JobResult obj) { dsHiveServer.JobResultDataTable data = new dsHiveServer.JobResultDataTable(); dsHiveServer.JobResultRow row = data.NewJobResultRow(); row.JobResultId = obj.Id; data.AddJobResultRow(row); return row; } public override IEnumerable FindById(Guid id) { return TransactionalAdapter.GetDataById(id); } public override IEnumerable FindAll() { return TransactionalAdapter.GetData(); } protected override void SetConnection(DbConnection connection) { adapter.Connection = connection as SqlConnection; } protected override void SetTransaction(DbTransaction transaction) { adapter.Transaction = transaction as SqlTransaction; } } }