Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Services.Authentication Prototype/Service/Services/Administration/IAuthorizationManagementService.cs @ 3971

Last change on this file since 3971 was 3971, checked in by bfarka, 14 years ago

creating unique index for username, email and rolename (#1062)

File size: 331 bytes
RevLine 
[3971]1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.ServiceModel;
6
7namespace Service.Services.Administration {
8  [ServiceContract]
9  interface IAuthorizationManagementService {
10
11    [OperationContract]
12    void CreateRole(string roleName, bool isPermission);
13
14  }
15}
Note: See TracBrowser for help on using the repository browser.