Renamed to avoid confusion with domain model repositories

This commit is contained in:
Veljko Tosic
2026-02-14 22:40:57 +01:00
parent 628bba5986
commit 44ded27a2f
7 changed files with 22 additions and 22 deletions

View File

@@ -6,12 +6,12 @@ using Microsoft.EntityFrameworkCore;
namespace AipsCore.Infrastructure.Persistence.RefreshToken;
public class RefreshTokenRepository : IRefreshTokenRepository
public class RefreshTokenManager : IRefreshTokenManager
{
private readonly AipsDbContext _dbContext;
private readonly JwtSettings _jwtSettings;
public RefreshTokenRepository(AipsDbContext dbContext, JwtSettings jwtSettings)
public RefreshTokenManager(AipsDbContext dbContext, JwtSettings jwtSettings)
{
_dbContext = dbContext;
_jwtSettings = jwtSettings;