Ejemplo n.º 1
0
 public CustomersController(ShoppingProjectFinalContext context)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public CustomerTestController()
 {
     context = new ShoppingProjectFinalContext(dbContextOptions);
 }
Ejemplo n.º 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;
 }