Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Operator Architecture Refactoring/HeuristicLab.Hive.Contracts/Interfaces/IUserRoleManager.cs @ 1877

Last change on this file since 1877 was 842, checked in by msteinbi, 16 years ago

Login implemented with db (#399)

File size: 593 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.ServiceModel;
6using HeuristicLab.Hive.Contracts.BusinessObjects;
7
8namespace 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    void AddNewUser(User user);
18    [OperationContract]
19    List<UserGroup> GetAllUserGroups();
20  }
21}
Note: See TracBrowser for help on using the repository browser.