Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/IJobManager.cs @ 792

Last change on this file since 792 was 792, checked in by msteinbi, 16 years ago

Initial creation of external interfaces (#377)

File size: 449 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.ServiceModel;
6using HeuristicLab.Hive.Contracts.BusinessObjects;
7
8namespace HeuristicLab.Hive.Contracts.Interfaces {
9  /// <summary>
10  /// This is the facade for the Job Manager used by the Management Console
11  /// </summary>
12  [ServiceContract]
13  interface IJobManager {
14    [OperationContract]
15    List<Job> GetAllJobs();
16  }
17}
Note: See TracBrowser for help on using the repository browser.