using DaSaSo.Domain.Model; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DaSaSo.EntityFramework { public class DaSaSoDbContext : DbContext { public DaSaSoDbContext(DbContextOptions options) : base(options) { } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); } public DbSet? Clients { get; set; } public DbSet? Projects { get; set; } public DbSet? Buildingsites { get; set; } public DbSet? SewerObjects { get; set; } public DbSet? SewerDamages { get; set; } public DbSet? PipeLiners { get; set; } public DbSet? Impregnations { get; set; } public DbSet? SewerPoints { get; set; } public DbSet? PhotoDocumentation { get; set;} } }