No Description

IApplicationDatabaseContext.cs 539B

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

Powered by TurnKey Linux.