Brak opisu

IApplicationDatabaseContext.cs 482B

1234567891011121314
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. namespace Backend.Data.Interfaces
  4. {
  5. public interface IApplicationDatabaseContext : IDisposable, IDbContext
  6. {
  7. public DbSet<Produit> Produits { get; set; }
  8. public DbSet<Propriete> Proprietes { get; set; }
  9. public DbSet<TypePropriete> TypeProprietes { get; set; }
  10. public DbSet<Commande> Commandes { get; set; }
  11. public DbSet<LigneCommande> LigneCommandes { get; set; }
  12. }
  13. }

Powered by TurnKey Linux.