public WebMenuAuthorityServiceImpl(IWebMenuAuthorityRepository webMenuAuthorityRepository, IMapper mapper, IAuthorityUnitOfWork authorityUnitOfWork, IUserOwnedWebMenuAuthorityRepository userOwnedWebMenuAuthorityRepository) { _webMenuAuthorityRepository = webMenuAuthorityRepository; _mapper = mapper; _authorityUnitOfWork = authorityUnitOfWork; _userOwnedWebMenuAuthorityRepository = userOwnedWebMenuAuthorityRepository; }
public APIAuthorityServiceImpl(IAPIAuthorityRepository apiAuthorityRepository, IMapper mapper, IAuthorityUnitOfWork authorityUnitOfWork, IUserOwnedAPIAuthorityRepository userOwnedAPIAuthorityRepository) { _apiAuthorityRepository = apiAuthorityRepository; _mapper = mapper; _authorityUnitOfWork = authorityUnitOfWork; _userOwnedAPIAuthorityRepository = userOwnedAPIAuthorityRepository; }
public SubSystemServiceImpl(ISubSystemRepository subSystemRepository, IMapper mapper, IAuthorityUnitOfWork authorityUnitOfWork, IUserOwnedSubSystemViewRepository userOwnedSubSystemViewRepository) { _subSystemRepository = subSystemRepository; _mapper = mapper; _authorityUnitOfWork = authorityUnitOfWork; _userOwnedSubSystemViewRepository = userOwnedSubSystemViewRepository; }
public UserServiceImpl(IUserRepository userRepository, IMapper mapper, IAuthorityUnitOfWork authorityUnitOfWork, IUserRoleRepository userRoleRepository) { _userRepository = userRepository; _mapper = mapper; _authorityUnitOfWork = authorityUnitOfWork; _userRoleRepository = userRoleRepository; }
public RoleServiceImpl(IRoleRepository roleRepository, IMapper mapper, IAuthorityUnitOfWork authorityUnitOfWork, IRoleWebMenuMapRepository roleWebMenuRepository, IWebMenuRepository webMenuRepository) { _roleRepository = roleRepository; _mapper = mapper; _authorityUnitOfWork = authorityUnitOfWork; _roleWebMenuRepository = roleWebMenuRepository; _webMenuRepository = webMenuRepository; }
public RoleServiceImpl(IRoleRepository roleRepository, IMapper mapper, IAuthorityUnitOfWork authorityUnitOfWork, IRoleActionAuthorityRepository roleActionAuthorityRepository, IRoleAPIAuthorityRepository roleAPIAuthorityRepository, IRoleWebMenuAuthorityRepository roleWebMenuAuthorityRepository) { _roleRepository = roleRepository; _mapper = mapper; _authorityUnitOfWork = authorityUnitOfWork; _roleActionAuthorityRepository = roleActionAuthorityRepository; _roleAPIAuthorityRepository = roleAPIAuthorityRepository; _roleWebMenuAuthorityRepository = roleWebMenuAuthorityRepository; }
public ActionAuthorityServiceImpl(IActionAuthorityRepository actionAuthorityRepository, IMapper mapper, IAuthorityUnitOfWork authorityUnitOfWork) { _actionAuthorityRepository = actionAuthorityRepository; _mapper = mapper; _authorityUnitOfWork = authorityUnitOfWork; }