Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/TableAdapterWrapper/ClientConfigAdapterWrapper.cs @ 2608

Last change on this file since 2608 was 2002, checked in by svonolfe, 15 years ago

Implementd ClientConfigAdapter (#372)

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