using Microsoft.EntityFrameworkCore; using WMS_GIRAF_Interface.Entities; namespace WMS_GIRAF_Interface.Data; public class MichelinDbContext : DbContext { public MichelinDbContext(DbContextOptions options) : base(options) { } public DbSet DestinationId { get; set; } public DbSet Manage_Main { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { } }