using AB.Domain.Entities; using Microsoft.EntityFrameworkCore; namespace AB.Persistence; public sealed class RepoDbContext : DbContext { public RepoDbContext(DbContextOptions options) : base(options) { } public DbSet Customers { get; set; } public DbSet Suppliers { get; set; } public DbSet Products { get; set; } }