Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/10/08 13:47:17 (16 years ago)
Author:
msteinbi
Message:

Implementation of UserRoleManager (#417)

File:
1 edited

Legend:

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

    r934 r937  
    4343      clientGroups = new List<ClientGroup>();
    4444
    45       ClientGroup cg = new ClientGroup { ResourceId = 4, Name = "SuperGroup", ClientGroupId = 1 };
     45      ClientGroup cg = new ClientGroup { ResourceId = 4, Name = "SuperGroup" };
    4646      cg.Resources = new List<Resource>();
    4747
     
    7878
    7979    public Response AddClientGroup(ClientGroup clientGroup) {
    80       throw new NotImplementedException();
     80      Response response = new Response();
     81
     82      ClientGroup clientGroupFromDb = clientGroupAdapter.GetClientGroupById(clientGroup.ResourceId);
     83     
     84
     85      return response;
    8186    }
    8287
Note: See TracChangeset for help on using the changeset viewer.