public CustomersController(CnamDbContext context) { _context = context; }
public OrdersController(CnamDbContext context, OrderDataService orderDataService) { _orderDataService = orderDataService; _context = context; }
public ProductsController(CnamDbContext context) { _context = context; }
public SalesStatusController(CnamDbContext context) { }
public OrderDataService(CnamDbContext context) { _context = context; }
public OrderDetailsController(CnamDbContext context) { _context = context; }