Changeset 7535 for branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBRun.cs
- Timestamp:
- 02/28/12 15:48:11 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBRun.cs
r7385 r7535 24 24 using System.Drawing; 25 25 using System.IO; 26 using HeuristicLab.Clients.Access; 26 27 using HeuristicLab.Common; 27 28 using HeuristicLab.Core; … … 128 129 run.AlgorithmId = algorithmId; 129 130 run.ProblemId = problemId; 130 run.UserId = Guid.Empty; 131 run.ClientId = Guid.Empty; 131 //TODO: should there be some error handling? at this point it should already be checked that the user and client are registred 132 run.UserId = UserInformation.Instance.User.Id; 133 run.ClientId = ClientInformation.Instance.ClientInfo.Id; 132 134 run.CreatedDate = createdDate; 133 135 run.ParameterValues = ConvertToValues(Parameters);
Note: See TracChangeset
for help on using the changeset viewer.