This commit is contained in:
elias
2023-08-06 23:12:45 +02:00
parent c8242217a5
commit 3c22d881ae
7 changed files with 222 additions and 8 deletions

View File

@@ -15,6 +15,8 @@ builder.Services.AddDbContext<ShoppingContext>(opt =>
opt.UseInMemoryDatabase("ShoppingList"));
builder.Services.AddDbContext<MoneyContext>(opt =>
opt.UseInMemoryDatabase("Wallet"));
builder.Services.AddDbContext<BudgetContext>(opt =>
opt.UseInMemoryDatabase("Budget"));
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();