Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/15/11 02:04:07 (13 years ago)
Author:
swagner
Message:

Worked on OKB (#1174)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OKB (trunk integration)/HeuristicLab.Services.OKB/3.3/Administration/IAdministrationService.cs

    r5482 r5679  
    3434    #region Platform Methods
    3535    [OperationContract]
     36    Platform GetPlatform(long id);
     37    [OperationContract]
    3638    IEnumerable<Platform> GetPlatforms();
    3739    [OperationContract]
     
    4547    #region AlgorithmClass Methods
    4648    [OperationContract]
     49    AlgorithmClass GetAlgorithmClass(long id);
     50    [OperationContract]
    4751    IEnumerable<AlgorithmClass> GetAlgorithmClasses();
    4852    [OperationContract]
     
    5559
    5660    #region Algorithm Methods
     61    [OperationContract]
     62    Algorithm GetAlgorithm(long id);
    5763    [OperationContract]
    5864    IEnumerable<Algorithm> GetAlgorithms();
     
    7581    #region ProblemClass Methods
    7682    [OperationContract]
     83    ProblemClass GetProblemClass(long id);
     84    [OperationContract]
    7785    IEnumerable<ProblemClass> GetProblemClasses();
    7886    [OperationContract]
     
    8593
    8694    #region Problem Methods
     95    [OperationContract]
     96    Problem GetProblem(long id);
    8797    [OperationContract]
    8898    IEnumerable<Problem> GetProblems();
Note: See TracChangeset for help on using the changeset viewer.