1234567891011121314 |
- using Microsoft.EntityFrameworkCore;
- using System;
-
- namespace Backend.Data.Interfaces
- {
- public interface IApplicationDatabaseContext : IDisposable, IDbContext
- {
- public DbSet<Produit> Produits { get; set; }
- public DbSet<Propriete> Proprietes { get; set; }
- public DbSet<TypePropriete> TypeProprietes { get; set; }
- public DbSet<Commande> Commandes { get; set; }
- public DbSet<LigneCommande> LigneCommandes { get; set; }
- }
- }
|