public GetDigitalAssetByIdHandler(IHealthTrackerContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Exemplo n.º 2
0
 public AddOrUpdateDigitalAssetHandler(IHealthTrackerContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Exemplo n.º 3
0
 public UserManager(IHealthTrackerContext context)
 {
     _context = context;
 }
 public GetClaimsForUserHandler(IHealthTrackerContext context)
 {
     _context = context;
 }
 public RemoveDigitalAssetHandler(IHealthTrackerContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Exemplo n.º 6
0
 public GetUserByUsernameHandler(IHealthTrackerContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Exemplo n.º 7
0
 public AuthenticateHandler(IHealthTrackerContext context, IEncryptionService encryptionService)
 {
     _encryptionService = encryptionService;
     _context           = context;
 }