Implemented admin crud ui for users page. Fixed some smaller issues

This commit is contained in:
Masu Baumgartner
2024-10-06 20:44:18 +02:00
parent cf25e4e1e6
commit f48e5d4b19
7 changed files with 93 additions and 12 deletions

View File

@@ -86,7 +86,7 @@ var databaseHelper = new DatabaseHelper(
builder.Services.AddSingleton(databaseHelper);
builder.Services.AddScoped(typeof(DatabaseRepository<>));
builder.Services.AddScoped(typeof(CrudHelper<>));
builder.Services.AddScoped(typeof(CrudHelper<,>));
builder.Services.AddDbContext<CoreDataContext>();
databaseHelper.AddDbContext<CoreDataContext>();