示例#1
0
 public LogsService(PasswordWalletContext passwordWalletContext)
 {
     _passwordWalletContext = passwordWalletContext;
 }
示例#2
0
 public AuthService(PasswordWalletContext passwordWalletContext, IMemoryCache memoryCache)
 {
     _passwordWalletContext = passwordWalletContext;
     _memoryCache           = memoryCache;
 }
示例#3
0
 public WalletService(PasswordWalletContext passwordWalletContext, IMemoryCache memoryCache, IAuthorizationService authorizationService)
 {
     _passwordWalletContext = passwordWalletContext;
     _memoryCache           = memoryCache;
     _authorizationService  = authorizationService;
 }