refactor: rename NotificationEfRepository to EfRepository

Ref: IT-628

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Anatolii Grynchuk
2026-05-01 23:34:11 +03:00
parent c2a4f3b9d7
commit ce1ef1fea6
4 changed files with 5 additions and 5 deletions
@@ -3,13 +3,13 @@ using Microsoft.EntityFrameworkCore;
namespace HrynCo.NotificationService.DAL.EF.Core;
internal abstract class NotificationEfRepository<TEntity>
internal abstract class EfRepository<TEntity>
where TEntity : class
{
protected NotificationDbContext DbContext { get; }
protected DbSet<TEntity> DbSet { get; }
protected NotificationEfRepository(NotificationDbContext dbContext)
protected EfRepository(NotificationDbContext dbContext)
{
DbContext = dbContext;
DbSet = dbContext.Set<TEntity>();