public RoleAuthorityController(IRoleAdminService roleService, IAuthorityAdminService authorityService)
 {
     this._roleService      = roleService;
     this._authorityService = authorityService;
 }
Example #2
0
 public UserController(IUserAdminService userService, IRoleAdminService roleService, IAuthorityAdminService authorityService)
 {
     this._userService      = userService;
     this._authorityService = authorityService;
     this._roleService      = roleService;
 }