Last change
on this file since 809 was
800,
checked in by msteinbi, 16 years ago
|
Added additional WCF endpoint for the server management console - fixed #381
|
File size:
421 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Hive.Contracts.Interfaces;
|
---|
6 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
7 |
|
---|
8 | namespace HeuristicLab.Hive.Server.Core {
|
---|
9 | class JobManager: IJobManager {
|
---|
10 | #region IJobManager Members
|
---|
11 |
|
---|
12 | public List<Job> GetAllJobs() {
|
---|
13 | throw new NotImplementedException();
|
---|
14 | }
|
---|
15 |
|
---|
16 | #endregion
|
---|
17 | }
|
---|
18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.