50828d23ec
- Consolidate unit of work implementation with NotificationUnitOfWork. - Refactor repositories to use NotificationBaseRepository for consistency. - Simplify request handlers by removing IUnitOfWork dependency. - Update related tests and service registration.
13 lines
369 B
C#
13 lines
369 B
C#
namespace HrynCo.NotificationService.DAL.EF.Core;
|
|
|
|
using HrynCo.DAL.Abstract.Entities;
|
|
using HrynCo.DAL.EF.Core;
|
|
|
|
public class NotificationEfRepository<TEntity> : BaseEfRepository<NotificationDbContext, TEntity, Guid>
|
|
where TEntity : class, IEntity<Guid>
|
|
{
|
|
public NotificationEfRepository(NotificationDbContext dbContext) :
|
|
base(dbContext)
|
|
{
|
|
}
|
|
} |