Changeset 2195 for branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.Database.SQLServerCompact/3.2/DataObjects
- Timestamp:
- 07/28/09 15:43:24 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.Database.SQLServerCompact/3.2/DataObjects/Model.cs
r2194 r2195 8 8 namespace HeuristicLab.Modeling.Database.SQLServerCompact { 9 9 [Table(Name = "Model")] 10 public class Model : IModel {10 public class Model : IModel { 11 11 public Model() { 12 12 targetVariable = default(EntityRef<Variable>); … … 92 92 if (value != null) { 93 93 targetVariableId = ((Variable)value).Id; 94 } 94 } 95 95 } 96 96 }
Note: See TracChangeset
for help on using the changeset viewer.