Changeset 5299 for branches/OKB (trunk integration)/HeuristicLab.Services.OKB/3.3/Interfaces/IAdministrationService.cs
- Timestamp:
- 01/15/11 01:35:43 (14 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/OKB (trunk integration)/HeuristicLab.Services.OKB/3.3/Interfaces/IAdministrationService.cs
r5298 r5299 28 28 namespace HeuristicLab.Services.OKB { 29 29 /// <summary> 30 /// Interface of the OKB service.30 /// Interface of the OKB administration service. 31 31 /// </summary> 32 32 [ServiceContract(ProtectionLevel = ProtectionLevel.EncryptAndSign)] 33 public interface I OKBService {33 public interface IAdministrationService { 34 34 #region Platform Methods 35 35 [OperationContract] … … 192 192 void DeleteRun(long id); 193 193 #endregion 194 195 #region Query Methods196 [OperationContract]197 IEnumerable<Filter> GetFilters();198 [OperationContract]199 long QueryNumberOfRuns(Filter filter);200 [OperationContract]201 IEnumerable<Run> QueryRuns(Filter filter);202 #endregion203 194 } 204 195 }
Note: See TracChangeset
for help on using the changeset viewer.