Exemple #1
0
 public CustomersController(ShoppingProjectFinalContext context)
 {
     _context = context;
 }
Exemple #2
0
 public CustomerTestController()
 {
     context = new ShoppingProjectFinalContext(dbContextOptions);
 }
Exemple #3
0
 public CartController(ShoppingProjectFinalContext context)
 {
     _context = context;
 }
 public BrandTestController()
 {
     context = new ShoppingProjectFinalContext(dbContextOptions);
 }
 public ProductCategoryTestController()
 {
     context = new ShoppingProjectFinalContext(dbContextOptions);
 }
 public BrandController(ShoppingProjectFinalContext context)
 {
     _context = context;
 }
 public ProductCategoryController(ShoppingProjectFinalContext context)
 {
     _context = context;
 }