Esempio n. 1
0
 public CustomUserClaimsPrincipalFactory(
     IUserService userService,
     IRoleService roleService,
     IDoxatagService doxatagService,
     IOptionsSnapshot <IdentityOptions> optionsSnapshot
     )
 {
     _doxatagService  = doxatagService;
     _optionsSnapshot = optionsSnapshot;
     UserService      = userService;
     RoleService      = roleService;
 }
Esempio n. 2
0
 public IdentityDbContextSeeder(
     IDoxatagService doxatagService,
     IUserService userService,
     RoleService roleService,
     IdentityDbContext context,
     IWebHostEnvironment environment,
     IOptionsSnapshot <IdentityAppSettings> options,
     ILogger <IdentityDbContextSeeder> logger
     ) : base(context, environment, logger)
 {
     _doxatagService = doxatagService;
     _userService    = userService;
     _roleService    = roleService;
     _options        = options;
 }
Esempio n. 3
0
 public IdentityGrpcService(IUserService userService, IRoleService roleService, IDoxatagService doxatagService)
 {
     _userService    = userService;
     _roleService    = roleService;
     _doxatagService = doxatagService;
 }
Esempio n. 4
0
 public DoxatagHistoryController(IUserService userService, IDoxatagService doxatagService, IMapper mapper)
 {
     _userService    = userService;
     _doxatagService = doxatagService;
     _mapper         = mapper;
 }