Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/TableAdapterWrapper/JobAdapterWrapper.cs @ 1716

Last change on this file since 1716 was 1580, checked in by svonolfe, 15 years ago

Added PluginInfoAdapter (#372)

File size: 1.4 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.DataAccess.ADOHelper;
6using System.Data.SqlClient;
7using HeuristicLab.Hive.Contracts.BusinessObjects;
8using System.Data.Common;
9
10namespace HeuristicLab.Hive.Server.ADODataAccess.TableAdapterWrapper {
11  class JobAdapterWrapper :
12    TableAdapterWrapperBase<dsHiveServerTableAdapters.JobTableAdapter,
13                      Job,
14                      dsHiveServer.JobRow> {
15    public override void UpdateRow(dsHiveServer.JobRow row) {
16      TransactionalAdapter.Update(row);
17    }
18
19    public override dsHiveServer.JobRow
20      InsertNewRow(Job job) {
21      dsHiveServer.JobDataTable data =
22        new dsHiveServer.JobDataTable();
23
24      dsHiveServer.JobRow row = data.NewJobRow();
25      row.JobId = job.Id;
26      data.AddJobRow(row);
27
28      return row;
29    }
30
31    public override IEnumerable<dsHiveServer.JobRow>
32      FindById(Guid id) {
33      return TransactionalAdapter.GetDataById(id);
34    }
35
36    public override IEnumerable<dsHiveServer.JobRow>
37      FindAll() {
38      return TransactionalAdapter.GetData();
39    }
40
41    protected override void SetConnection(DbConnection connection) {
42      adapter.Connection = connection as SqlConnection;
43    }
44
45    protected override void SetTransaction(DbTransaction transaction) {
46      adapter.Transaction = transaction as SqlTransaction;
47    }
48  }
49}
Note: See TracBrowser for help on using the repository browser.