Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/Command/SqlCommandView.cs @ 6133

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

#1471: imported generic parts of DataImporter from private code base

File size: 504 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Data;
5using System.Drawing;
6using System.Text;
7using System.Windows.Forms;
8
9namespace HeuristicLab.DataImporter.DataProcessor.Command {
10  public partial class SqlCommandView : HeuristicLab.DataImporter.Data.CommandBase.CommandViewBase {
11    public SqlCommandView() {
12      InitializeComponent();
13    }
14
15    public string SqlCommand {
16      get { return this.txtSqlCommand.Text; }
17    }
18  }
19}
Note: See TracBrowser for help on using the repository browser.