Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeColumnGroup/AddNewDateTimeColumnCommand.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: 1.1 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.DataImporter.Data.CommandBase;
6using HeuristicLab.DataImporter.Data.Model;
7using HeuristicLab.DataImporter.Data;
8using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
9
10namespace HeuristicLab.DataImporter.Command {
11  [StorableClass]
12  [ViewableCommandInfoAttribute("New DateTimeColumn", 1, ColumnGroupState.Active, "Column Commands", Position = 9)]
13  public class AddNewDateTimeColumnCommand : AddNewColumnCommandBase {
14    private AddNewDateTimeColumnCommand()
15      : base(null, string.Empty, string.Empty, typeof(DateTimeColumn)) {
16    }
17
18    public AddNewDateTimeColumnCommand(DataSet dataSet, string columnGroupName)
19      : this(dataSet, columnGroupName, "New DataTimeColumn") {
20    }
21
22    public AddNewDateTimeColumnCommand(DataSet dataSet, string columnGroupName, string columnName)
23      : base(dataSet, columnGroupName, columnName, typeof(DateTimeColumn)) {
24    }
25
26    public override string Description {
27      get { return "New DateTimeColumn"; }
28    }
29  }
30}
Note: See TracBrowser for help on using the repository browser.