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