Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Core/ClientManager.cs @ 809

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: 650 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Hive.Contracts.Interfaces;
6using HeuristicLab.Hive.Contracts.BusinessObjects;
7
8namespace HeuristicLab.Hive.Server.Core {
9  class ClientManager: IClientManager {
10    #region IClientManager Members
11
12    public List<ClientInfo> GetAllClients() {
13      return new List<ClientInfo>();
14    }
15
16    public List<ClientGroup> GetAllClientGroups() {
17      return new List<ClientGroup>();
18    }
19
20    public List<UpTimeStatistics> GetAllUpTimeStatistics() {
21      return new List<UpTimeStatistics>();
22    }
23
24    #endregion
25  }
26}
Note: See TracBrowser for help on using the repository browser.