Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Core/UserRoleManager.cs @ 807

Last change on this file since 807 was 800, checked in by msteinbi, 16 years ago

Added additional WCF endpoint for the server management console - fixed #381

File size: 540 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 UserRoleManager: IUserRoleManager {
10    #region IUserRoleManager Members
11
12    public List<User> GetAllUsers() {
13      throw new NotImplementedException();
14    }
15
16    public List<UserGroup> GetAllUserGroups() {
17      throw new NotImplementedException();
18    }
19
20    #endregion
21  }
22}
Note: See TracBrowser for help on using the repository browser.