Free cookie consent management tool by TermsFeed Policy Generator

Changeset 821


Ignore:
Timestamp:
11/26/08 15:07:32 (16 years ago)
Author:
msteinbi
Message:

Added delegations to the Managers (#395)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Core/ServerConsoleFacade.cs

    r800 r821  
    99  public class ServerConsoleFacade: IServerConsoleFacade {
    1010    private IClientManager clientManager = new ClientManager();
     11    private IJobManager jobManager = new JobManager();
     12    private IUserRoleManager userRoleManager = new UserRoleManager();
    1113   
    1214    #region IClientManager Members
     
    2931
    3032    public List<HeuristicLab.Hive.Contracts.BusinessObjects.Job> GetAllJobs() {
    31       throw new NotImplementedException();
     33      return jobManager.GetAllJobs();
    3234    }
    3335
     
    3739
    3840    public List<HeuristicLab.Hive.Contracts.BusinessObjects.User> GetAllUsers() {
    39       throw new NotImplementedException();
     41      return userRoleManager.GetAllUsers();
    4042    }
    4143
    4244    public List<HeuristicLab.Hive.Contracts.BusinessObjects.UserGroup> GetAllUserGroups() {
    43       throw new NotImplementedException();
     45      return userRoleManager.GetAllUserGroups();
    4446    }
    4547
Note: See TracChangeset for help on using the changeset viewer.