コード例 #1
0
ファイル: LogsService.cs プロジェクト: Szykowsky/PocketWallet
 public LogsService(PasswordWalletContext passwordWalletContext)
 {
     _passwordWalletContext = passwordWalletContext;
 }
コード例 #2
0
ファイル: AuthService.cs プロジェクト: Szykowsky/PocketWallet
 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;
 }