Complete Rebuild of Project from HelloWorld to Blazer WebApp
All checks were successful
Tests / Declarative: Post Actions No test results found
csharp-secdevops-pipeline-pod/pipeline/head This commit looks good

This commit is contained in:
2026-05-12 09:16:44 +02:00
parent e784b7996c
commit 251776b9fd
183 changed files with 644 additions and 8364 deletions

8
Data/AppDbContext.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace SecDevOpsLab.Data;
using Microsoft.EntityFrameworkCore;
using SecDevOpsLab.Models;
public class AppDbContext : DbContext {
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) { }
public DbSet<Book> Books => Set<Book>();
}