Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/17/15 22:29:15 (8 years ago)
Author:
abeham
Message:

#2546: merged to stable

Location:
stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Services.OKB/3.3/Query/Convert.cs

    r12009 r13483  
    4646    private static DT.Algorithm ToDto(DA.Algorithm source) {
    4747      if (source == null) return null;
    48       return new DT.Algorithm { Name = source.Name, Description = source.Description, AlgorithmClass = source.AlgorithmClass.Name, Platform = source.Platform.Name, DataType = Convert.ToDto(source.DataType) };
     48      return new DT.Algorithm { Id = source.Id, Name = source.Name, Description = source.Description, AlgorithmClass = source.AlgorithmClass.Name, Platform = source.Platform.Name, DataType = Convert.ToDto(source.DataType) };
    4949    }
    5050
  • stable/HeuristicLab.Services.OKB/3.3/Query/DataTransfer/Algorithm.cs

    r12009 r13483  
    2626  public class Algorithm {
    2727    [DataMember]
     28    public long Id { get; set; }
     29    [DataMember]
    2830    public string Name { get; set; }
    2931    [DataMember]
Note: See TracChangeset for help on using the changeset viewer.