public Handler(IIdentityServiceContext context, IEventBus bus, IEncryptionService encryptionService, IChangePasswordCommandValidator validator)
 {
     _context           = context;
     _encryptionService = encryptionService;
     _bus       = bus;
     _validator = validator;
 }
 public Handler(IIdentityServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
 public GetDigitalAssetsHandler(IIdentityServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Example #4
0
 public Handler(IIdentityServiceContext context)
 {
     _context = context;
 }
 public Handler(IIdentityServiceContext context, IEncryptionService encryptionService)
 {
     _encryptionService = encryptionService;
     _context           = context;
 }
 public AddOrUpdateDigitalAssetHandler(IIdentityServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Example #7
0
 public UserManager(IIdentityServiceContext context)
 {
     _context = context;
 }