Rev | Line | |
---|
[1580] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using HeuristicLab.DataAccess.ADOHelper;
|
---|
| 6 | using System.Data.SqlClient;
|
---|
| 7 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
| 8 | using System.Data.Common;
|
---|
| 9 |
|
---|
| 10 | namespace HeuristicLab.Hive.Server.ADODataAccess.TableAdapterWrapper {
|
---|
| 11 | class ClientAdapterWrapper :
|
---|
| 12 | TableAdapterWrapperBase<
|
---|
| 13 | dsHiveServerTableAdapters.ClientTableAdapter,
|
---|
| 14 | ClientInfo,
|
---|
| 15 | dsHiveServer.ClientRow> {
|
---|
| 16 | public override void UpdateRow(dsHiveServer.ClientRow row) {
|
---|
| 17 | TransactionalAdapter.Update(row);
|
---|
| 18 | }
|
---|
| 19 |
|
---|
| 20 | public override dsHiveServer.ClientRow
|
---|
| 21 | InsertNewRow(ClientInfo client) {
|
---|
| 22 | dsHiveServer.ClientDataTable data =
|
---|
| 23 | new dsHiveServer.ClientDataTable();
|
---|
| 24 |
|
---|
| 25 | dsHiveServer.ClientRow row = data.NewClientRow();
|
---|
| 26 | row.ResourceId = client.Id;
|
---|
| 27 | data.AddClientRow(row);
|
---|
| 28 |
|
---|
| 29 | return row;
|
---|
| 30 | }
|
---|
| 31 |
|
---|
| 32 | public override IEnumerable<dsHiveServer.ClientRow>
|
---|
| 33 | FindById(Guid id) {
|
---|
| 34 | return TransactionalAdapter.GetDataById(id);
|
---|
| 35 | }
|
---|
| 36 |
|
---|
| 37 | public override IEnumerable<dsHiveServer.ClientRow>
|
---|
| 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.