Changeset 16567 for addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DbExplorer.Interfaces
- Timestamp:
- 01/28/19 14:31:52 (6 years ago)
- Location:
- addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DbExplorer.Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DbExplorer.Interfaces/DbColumn.cs
r16566 r16567 20 20 #endregion 21 21 22 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;23 22 using HEAL.Attic; 24 23 … … 27 26 public class DbColumn { 28 27 [StorableConstructor] 29 protected DbColumn( bool deserializing) : base() { }28 protected DbColumn(StorableConstructorFlag _) { } 30 29 31 30 public DbColumn(string columnName, string sqlDataType) { -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DbExplorer.Interfaces/DbTable.cs
r16566 r16567 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;26 25 using HEAL.Attic; 27 26 … … 30 29 public class DbTable { 31 30 [StorableConstructor] 32 protected DbTable(bool deserializing) 33 : base() { 31 protected DbTable(StorableConstructorFlag _) { 34 32 this.informationLoaded = new DateTime(1990, 1, 1); 35 33 }
Note: See TracChangeset
for help on using the changeset viewer.