Beispiel #1
0
 public OrdersController(SuperMarketDbContext context)
 {
     _context = context;
 }
 public CustomersController(SuperMarketDbContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public RolesController(SuperMarketDbContext context)
 {
     _context = context;
 }
 public EmployeesController(SuperMarketDbContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public ProductsController(SuperMarketDbContext context)
 {
     _context = context;
 }
 public CategoriesController(SuperMarketDbContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public PaymentsController(SuperMarketDbContext context)
 {
     _context = context;
 }