using System.Linq.Expressions; using GozareshgirProgramManager.Application._Common.Interfaces; using GozareshgirProgramManager.Domain.UserAgg.Entities; using GozareshgirProgramManager.Domain.UserAgg.Repositories; using GozareshgirProgramManager.Infrastructure.Persistence._Common; using GozareshgirProgramManager.Infrastructure.Persistence.Context; using Microsoft.EntityFrameworkCore; namespace GozareshgirProgramManager.Infrastructure.Persistence.Repositories; public class UserRefreshTokenRepository : RepositoryBase, IUserRefreshTokenRepository { private readonly ProgramManagerDbContext _context; public UserRefreshTokenRepository(ProgramManagerDbContext context) : base(context) { _context = context; } }