Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/Command/DataBaseCommandBase.cs @ 6134

Last change on this file since 6134 was 6134, checked in by gkronber, 13 years ago

#1471: added plugin for DbExplorer interfaces, deleted .resx files, set svn:ignore properties, and added license header

File size: 1.7 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.DataImporter.Data.Model;
6using HeuristicLab.DataImporter.Data.CommandBase;
7using HeuristicLab.DataImporter.DbExplorer.Interfaces;
8using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
9
10namespace 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-2011 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
Note: See TracBrowser for help on using the repository browser.