pdf ใบสมัครสอบ

This commit is contained in:
Kittapath 2023-10-08 13:54:20 +07:00
parent 86a9e90b7a
commit 98b6cc0275
15 changed files with 710 additions and 68 deletions

View file

@ -133,6 +133,7 @@ var app = builder.Build();
// apply migrations
await using var scope = app.Services.CreateAsyncScope();
await using var db = scope.ServiceProvider.GetRequiredService<ApplicationDBContext>();
await using var dbExam = scope.ServiceProvider.GetRequiredService<ApplicationDBExamContext>();
await db.Database.MigrateAsync();
app.Run();