public ProductsController(SugarbakersDBContext context)
 {
     _context = context;
 }
 public OrderController(SugarbakersDBContext context)
 {
     _context = context;
 }
Example #3
0
 public CustomerController(SugarbakersDBContext context)
 {
     _context = context;
 }
Example #4
0
 public ZipsController(SugarbakersDBContext context)
 {
     _context = context;
 }
 public PaymentsController(SugarbakersDBContext context)
 {
     _context = context;
 }
Example #6
0
 public ItemsonOrdersController(SugarbakersDBContext context)
 {
     _context = context;
 }