1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.DataImporter.Data.Model;
|
---|
6 | using HeuristicLab.DataImporter.Data.CommandBase;
|
---|
7 | using HeuristicLab.DataImporter.DbExplorer.Interfaces;
|
---|
8 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
9 |
|
---|
10 | namespace HeuristicLab.DataImporter.DataProcessor.Command {
|
---|
11 | [StorableClass]
|
---|
12 | public abstract class DatabaseCommandBase : DataSetCommandBase {
|
---|
13 | private DatabaseCommandBase()
|
---|
14 | : base(null) {
|
---|
15 | }
|
---|
16 |
|
---|
17 | protected DatabaseCommandBase(DataSet dataSet, IDbExplorer dbExplorer)
|
---|
18 | : base(dataSet) {
|
---|
19 | this.dbExplorer = dbExplorer;
|
---|
20 | }
|
---|
21 |
|
---|
22 | private IDbExplorer dbExplorer;
|
---|
23 | public IDbExplorer DbExplorer {
|
---|
24 | get { return this.dbExplorer; }
|
---|
25 | set { this.dbExplorer = value; }
|
---|
26 | }
|
---|
27 | }
|
---|
28 | }
|
---|
29 | #region License Information
|
---|
30 | /* HeuristicLab
|
---|
31 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
32 | *
|
---|
33 | * This file is part of HeuristicLab.
|
---|
34 | *
|
---|
35 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
36 | * it under the terms of the GNU General Public License as published by
|
---|
37 | * the Free Software Foundation, either version 3 of the License, or
|
---|
38 | * (at your option) any later version.
|
---|
39 | *
|
---|
40 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
41 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
42 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
43 | * GNU General Public License for more details.
|
---|
44 | *
|
---|
45 | * You should have received a copy of the GNU General Public License
|
---|
46 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
47 | */
|
---|
48 | #endregion
|
---|
49 |
|
---|