Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/20/10 05:16:33 (14 years ago)
Author:
swagner
Message:

Worked on OKB (#1174)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Services.OKB/3.3/Interfaces/IAdminService.cs

    r4426 r4442  
    3232  public interface IAdminService {
    3333    [OperationContract]
     34    Platform GetPlatform(long platformId);
     35    [OperationContract]
     36    IEnumerable<Platform> GetPlatforms();
     37    [OperationContract]
     38    void StorePlatform(Platform platform);
     39    [OperationContract]
     40    void DeletePlatform(long platformId);
     41
     42    [OperationContract]
    3443    AlgorithmClass GetAlgorithmClass(long algorithmClassId);
    3544    [OperationContract]
     
    5059
    5160
    52 
    53 
    54 
    55     /// <summary>
    56     /// Gets all available platforms.
    57     /// </summary>
    58     /// <returns>A list of <see cref="Platform"/>s.</returns>
    59     [OperationContract]
    60     Platform[] GetPlatforms();
    6161
    6262    /// <summary>
Note: See TracChangeset for help on using the changeset viewer.