using Microsoft.EntityFrameworkCore; using Shared.Domain; namespace SewerStammGen.EntityFramework { public class SewerStammGenDbContext : DbContext { public SewerStammGenDbContext(DbContextOptions options) : base(options) { } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); } public DbSet? Schaechte { get; set; } public DbSet? Projekte { get; set; } public DbSet? Kanaele { get; set; } public DbSet? Auftraggebers { get; set; } } }