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
@@ -5,7 +5,7 @@ using Microsoft.EntityFrameworkCore;
namespace HrynCo.NotificationService.DAL.EF.Repositories;
internal sealed class ProviderUsageRepository : NotificationEfRepository<ProviderUsageEntity>, IProviderUsageRepository
internal sealed class ProviderUsageRepository : EfRepository<ProviderUsageEntity>, IProviderUsageRepository
{
public ProviderUsageRepository(NotificationDbContext dbContext) : base(dbContext)
{