public LoginsController(IConfiguration config, BenriShopContext context)
 {
     _configuration = config;
     _context       = context;
 }
 public OrdersController(BenriShopContext context)
 {
     _context = context;
 }
 public ProductsController(BenriShopContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public AccountsController(BenriShopContext context)
 {
     _context = context;
 }