088eab0428
Ref: IT-628 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
9 lines
207 B
C#
9 lines
207 B
C#
namespace HrynCo.NotificationService.DAL.EF.Core;
|
|
|
|
internal sealed class UnitOfWork : EfUnitOfWork<NotificationDbContext>
|
|
{
|
|
public UnitOfWork(NotificationDbContext context) : base(context)
|
|
{
|
|
}
|
|
}
|