Changeset 4442 for trunk/sources/HeuristicLab.Services.OKB/3.3/Interfaces
- Timestamp:
- 09/20/10 05:16:33 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Services.OKB/3.3/Interfaces/IAdminService.cs
r4426 r4442 32 32 public interface IAdminService { 33 33 [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] 34 43 AlgorithmClass GetAlgorithmClass(long algorithmClassId); 35 44 [OperationContract] … … 50 59 51 60 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();61 61 62 62 /// <summary>
Note: See TracChangeset
for help on using the changeset viewer.