Last change
on this file since 3976 was
3971,
checked in by bfarka, 14 years ago
|
creating unique index for username, email and rolename (#1062)
|
File size:
331 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.ServiceModel;
|
---|
6 |
|
---|
7 | namespace 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.