Ejemplo n.º 1
0
 public ServiceFactory(IClientService clientService, ITokenService tokenService, IResourceOwnerService resourceOwnerService, IAuthorizationGrantService authorizationGrantService)
 {
     ClientService = clientService;
     TokenService = tokenService;
     ResourceOwnerService = resourceOwnerService;
     AuthorizationGrantService = authorizationGrantService;
 }
Ejemplo n.º 2
0
 public ServiceFactory(IClientService clientService, ITokenService tokenService, IResourceOwnerService resourceOwnerService, IAuthorizationGrantService authorizationGrantService)
 {
     ClientService             = clientService;
     TokenService              = tokenService;
     ResourceOwnerService      = resourceOwnerService;
     AuthorizationGrantService = authorizationGrantService;
 }
Ejemplo n.º 3
0
 public RoleObjectAccessService(IAppContext appContext
                                , IRoleObjectAccessRepository roleObjectAccessRepository
                                , IResourceOwnerService resourceOwnerService
                                )
 {
     _appContext = appContext;
     _roleObjectAccessRepository = roleObjectAccessRepository;
     _resourceOwnerService       = resourceOwnerService;
 }
Ejemplo n.º 4
0
 public RoleController(IWebAppContext appContext
                       , IRoleService roleService
                       , IRoleObjectAccessService roleObjectAccessService
                       , IResourceOwnerService resourceOwnerService
                       )
     : base(appContext)
 {
     _roleService             = roleService;
     _roleObjectAccessService = roleObjectAccessService;
     _resourceOwnerService    = resourceOwnerService;
 }
Ejemplo n.º 5
0
 public RoleController(IWebAppContext appContext
                       , IRoleService roleService
                       , IEntityPermissionService entityPermissionService
                       , IRoleObjectAccessService roleObjectAccessService
                       , ISystemUserRolesService systemUserRolesService
                       , IEntityFinder entityFinder
                       , IResourceOwnerService resourceOwnerService
                       , IDataFinder dataFinder)
     : base(appContext)
 {
     _roleService             = roleService;
     _entityPermissionService = entityPermissionService;
     _roleObjectAccessService = roleObjectAccessService;
     _systemUserRolesService  = systemUserRolesService;
     _entityFinder            = entityFinder;
     _resourceOwnerService    = resourceOwnerService;
     _dataFinder = dataFinder;
 }
Ejemplo n.º 6
0
 public SecurityController(IWebAppContext appContext
                           , ISystemUserService userService
                           , ISystemUserRolesService systemUserRolesService
                           , IRoleService roleService
                           , IRoleObjectAccessService roleObjectAccessService
                           , IDataCreater dataCreater
                           , IDataFinder dataFinder
                           , IDataDeleter dataDeleter
                           , IResourceOwnerService resourceOwnerService)
     : base(appContext)
 {
     _roleService             = roleService;
     _userService             = userService;
     _systemUserRolesService  = systemUserRolesService;
     _roleObjectAccessService = roleObjectAccessService;
     _dataCreater             = dataCreater;
     _dataFinder           = dataFinder;
     _dataDeleter          = dataDeleter;
     _resourceOwnerService = resourceOwnerService;
 }
Ejemplo n.º 7
0
 public SecurityController(IWebAppContext appContext
                           , IResourceOwnerService resourceOwnerService)
     : base(appContext)
 {
     _resourceOwnerService = resourceOwnerService;
 }