示例#1
0
 public DefaultEventNotificationService(PasswordlessLoginDbContext context)
 {
     _context = context;
 }
示例#2
0
 public DbOneTimeCodeStore(IApplicationLocalizer localizer, ILogger <DbOneTimeCodeStore> logger, PasswordlessLoginDbContext context)
 {
     _localizer = localizer;
     _logger    = logger;
     _context   = context;
 }
 public DbTrustedBrowserStore(IApplicationLocalizer localizer, ILogger <DbTrustedBrowserStore> logger, PasswordlessLoginDbContext context)
 {
     _localizer = localizer;
     _logger    = logger;
     _context   = context;
 }