chore(infrastructure): Core-Bibliotheken und UserManager.Infrastructure auf 2.0.0.0 aktualisiert

- Core-Bibliotheken und UserManager.Infrastructure im Infrastructure-Layer auf Version 2.0.0.0 erhöht.
- DbSet-Eigenschaften aus DbContext injiziert.
This commit is contained in:
Developer 02
2024-09-20 01:16:47 +02:00
parent f95f3c7b1b
commit 6b3e6cd6f5
10 changed files with 32 additions and 9 deletions

View File

@@ -7,7 +7,7 @@ namespace EnvelopeGenerator.Infrastructure.Repositories
{
public class ReceiverRepository : CRUDRepository<Receiver, int, EGDbContext>, IReceiverRepository
{
public ReceiverRepository(EGDbContext dbContext) : base(dbContext)
public ReceiverRepository(EGDbContext dbContext) : base(dbContext, dbContext.Receivers)
{
}