/// <summary> /// /// </summary> /// <param name="context">The SqlIdentityDbContext</param> /// <param name="tokenRepository">The TokenRepository</param> public SqlIdentityUserStore(SqlIdentityDbContext context, MFATokenDbContext mfaTokenContext) { _context = context; _mfaTokenContext = mfaTokenContext; }
public SqlIdentityRoleStore(SqlIdentityDbContext context) : base(context) { _context = context; }