Example #1
0
 public CustomersController(CnamDbContext context)
 {
     _context = context;
 }
 public OrdersController(CnamDbContext context, OrderDataService orderDataService)
 {
     _orderDataService = orderDataService;
     _context          = context;
 }
 public ProductsController(CnamDbContext context)
 {
     _context = context;
 }
Example #4
0
 public SalesStatusController(CnamDbContext context)
 {
 }
 public OrderDataService(CnamDbContext context)
 {
     _context = context;
 }
 public OrderDetailsController(CnamDbContext context)
 {
     _context = context;
 }