public ValidationCommandHandler(
     IGoogle2FaService google2FaService,
     IGoogle2FaBlacklistService blacklistService)
 {
     _google2FaService = google2FaService;
     _blacklistService = blacklistService;
 }
コード例 #2
0
 public Google2FAController(
     IGoogle2FaService google2FaService,
     IGoogle2FaBlacklistService blacklistService,
     IConfirmationCodesService confirmationCodesService,
     ILogFactory log,
     ConfirmationCodesServiceSettings confirmationCodesServiceSettings
     )
 {
     _confirmationCodesServiceSettings = confirmationCodesServiceSettings;
     _google2FaService         = google2FaService;
     _blacklistService         = blacklistService;
     _confirmationCodesService = confirmationCodesService;
     _log = log.CreateLog(this);
 }