Changeset 4492 for branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients
- Timestamp:
- 09/25/10 03:32:18 (14 years ago)
- Location:
- branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients/Algorithm.cs
r4456 r4492 27 27 public Algorithm() { 28 28 Name = "New Algorithm"; 29 PlatformId = 1; 30 AlgorithmClassId = 1; 29 31 } 30 32 } -
branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients/AlgorithmData.cs
r4481 r4492 23 23 24 24 namespace HeuristicLab.Clients.OKB { 25 public partial class AlgorithmData : IContent { } 25 public partial class AlgorithmData : IContent { 26 public AlgorithmData() { 27 Data = new byte[0]; 28 DataTypeId = 1; 29 } 30 } 26 31 } -
branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients/DataType.cs
r4466 r4492 27 27 public DataType() { 28 28 Name = "New Data Type"; 29 SqlName = "Blob"; 29 SqlName = "varbinary"; 30 PlatformId = 1; 30 31 } 31 32 -
branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients/OKBItem.cs
r4456 r4492 92 92 protected void RaisePropertyChanged(string propertyName) { 93 93 OnPropertyChanged(new PropertyChangedEventArgs(propertyName)); 94 if ((propertyName != " Modified") && (propertyName != "ItemImage")) {94 if ((propertyName != "Id") && (propertyName != "Modified") && (propertyName != "ItemImage")) { 95 95 Modified = true; 96 96 } -
branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients/Problem.cs
r4481 r4492 27 27 public Problem() { 28 28 Name = "New Problem"; 29 PlatformId = 1; 30 ProblemClassId = 1; 29 31 } 30 32 }
Note: See TracChangeset
for help on using the changeset viewer.