Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.ServiceModel;
|
---|
6 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
7 |
|
---|
8 | namespace HeuristicLab.Hive.Contracts.Interfaces {
|
---|
9 | /// <summary>
|
---|
10 | /// This is the facade for the User/Role Manager used by the Management Console
|
---|
11 | /// </summary>
|
---|
12 | [ServiceContract]
|
---|
13 | public interface IUserRoleManager {
|
---|
14 | [OperationContract]
|
---|
15 | List<User> GetAllUsers();
|
---|
16 | [OperationContract]
|
---|
17 | List<UserGroup> GetAllUserGroups();
|
---|
18 | }
|
---|
19 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.