Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Services.Authentication Prototype/Service/Services/Administration/AuthorizationManagementService.cs @ 3976

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

added first service method and unittest for service
added abstract unit test for starting a service host (1046)

File size: 469 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace Service.Services.Administration {
7  class AuthorizationManagementService : IAuthorizationManagementService{
8    #region IAuthorizationManagementService Member
9
10    public void CreateRole(string roleName, bool isPermission) {
11      new Service.Provider.HeuristicLabRoleProvider().CreateRole(roleName, isPermission);
12     
13
14    }
15
16    #endregion
17  }
18}
Note: See TracBrowser for help on using the repository browser.