using System; using System.Collections.Generic; using System.Linq; using System.Text; using HeuristicLab.Hive.Contracts.Interfaces; using HeuristicLab.Hive.Contracts.BusinessObjects; namespace HeuristicLab.Hive.Server.Core { public class ServerConsoleFacade: IServerConsoleFacade { private IClientManager clientManager = new ClientManager(); #region IClientManager Members public List GetAllClients() { return clientManager.GetAllClients(); } public List GetAllClientGroups() { return clientManager.GetAllClientGroups(); } public List GetAllUpTimeStatistics() { return clientManager.GetAllUpTimeStatistics(); } #endregion #region IJobManager Members public List GetAllJobs() { throw new NotImplementedException(); } #endregion #region IUserRoleManager Members public List GetAllUsers() { throw new NotImplementedException(); } public List GetAllUserGroups() { throw new NotImplementedException(); } #endregion } }