Example #1
0
 public OrdersController(IOrdersDbService context)
 {
     _context = context;
 }
 public OrdersController(IOrdersDbService service)
 {
     _dbService = service;
 }