using Backend.Domain.Entities; using Microsoft.EntityFrameworkCore; using System; namespace Backend.ApplicationCore.Interfaces.IRepositories { public interface IApplicationDatabaseContext : IDisposable, IDbContext { public DbSet Produits { get; set; } public DbSet Proprietes { get; set; } public DbSet TypeProprietes { get; set; } public DbSet Commandes { get; set; } public DbSet LigneCommandes { get; set; } } }