public TwoFactorContextCommand(TwoFactorContext context) { if (context == null) { throw new ArgumentNullException("context"); } _context = context; }
public TwoFactorContextReader(TwoFactorContext context) { if (context == null) { throw new ArgumentNullException("Context"); } _context = context; }
public SaveSecretForUserCommand(TwoFactorContext context) : base(context) { }
public OneTimeSecretReader(TwoFactorContext context) : base(context) { _viewModel = from o in context.OneTimeSecrets select o; }