public UploadDigitalAssetHandler(IAspNetWebApi2MediatRCustomeElementsV1StarterContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Example #2
0
 public GetUserByUsernameHandler(IAspNetWebApi2MediatRCustomeElementsV1StarterContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
 public UserManager(IAspNetWebApi2MediatRCustomeElementsV1StarterContext context)
 {
     _context = context;
 }
 public AuthenticateHandler(IAspNetWebApi2MediatRCustomeElementsV1StarterContext context, IEncryptionService encryptionService)
 {
     _encryptionService = encryptionService;
     _context           = context;
 }
 public GetClaimsForUserHandler(IAspNetWebApi2MediatRCustomeElementsV1StarterContext context)
 {
     _context = context;
 }