public OffersController(eLicitatieDbContext context)
 {
     _context = context;
 }
 public AuctionsController(eLicitatieDbContext context)
 {
     _context = context;
 }
Esempio n. 3
0
 public ProductsController(eLicitatieDbContext context)
 {
     _context = context;
 }
 public Categories(eLicitatieDbContext context)
 {
     _context = context;
 }
Esempio n. 5
0
 public AuthentificationController(eLicitatieDbContext dbContext, IConfiguration configuration)
 {
     _context       = dbContext;
     _configuration = configuration;
 }