public EmailSender(IOptions <TwoFactorOptions> options, TwoFactorService twoFactorService) { this._twoFactorOptions = options.Value; this._twoFactorService = twoFactorService; }
public TwoFactorService(UrlEncoder urlEncoder, IOptions <TwoFactorOptions> options) { this._urlEncoder = urlEncoder; this._twoFactorOptions = options.Value; }