Changeset 9614 for branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DbExplorer.Interfaces
- Timestamp:
- 06/12/13 13:32:34 (12 years ago)
- Location:
- branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DbExplorer.Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DbExplorer.Interfaces/DbColumn.cs
r7267 r9614 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using System.Xml;27 22 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 23 … … 30 25 [StorableClass] 31 26 public class DbColumn { 32 private DbColumn() 33 : base() { 34 } 27 [StorableConstructor] 28 protected DbColumn(bool deserializing) : base() { } 35 29 36 30 public DbColumn(string columnName, string sqlDataType) { -
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DbExplorer.Interfaces/DbTable.cs
r7267 r9614 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text;26 using System.Xml;27 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 26 … … 30 28 [StorableClass] 31 29 public class DbTable { 32 private DbTable() 30 [StorableConstructor] 31 protected DbTable(bool deserializing) 33 32 : base() { 34 this.columns = new List<DbColumn>();35 33 this.informationLoaded = new DateTime(1990, 1, 1); 36 34 } 37 35 38 36 public DbTable(string ownerName, string tableName) 39 : this() { 37 : base() { 38 this.informationLoaded = new DateTime(1990, 1, 1); 39 this.columns = new List<DbColumn>(); 40 40 this.ownerName = ownerName; 41 41 this.tableName = tableName;
Note: See TracChangeset
for help on using the changeset viewer.