Exemplo n.º 1
0
 public AdresseRepository(AppDeBaseDbContext dbContext) : base(dbContext)
 {
 }
Exemplo n.º 2
0
 protected Repository(AppDeBaseDbContext dbContext)
 {
     _dbContext = dbContext ?? throw new ArgumentNullException(nameof(dbContext));
     _dbSet     = dbContext.Set <T>();
 }
Exemplo n.º 3
0
 public FournisseurRepository(AppDeBaseDbContext dbContext) : base(dbContext)
 {
 }
Exemplo n.º 4
0
 public ProduitRepository(AppDeBaseDbContext dbContext) : base(dbContext)
 {
 }