public DiscountedProductsApiController(GroceryContext context, IOnShelfConverter onShelfConverter)
 {
     _context = context;
     _onShelfConverter = onShelfConverter;
     _products = GetProducts();
 }
Beispiel #2
0
 public ProductsApiController(GroceryContext context, IOnShelfConverter onShelfConverter)
 {
     _context          = context;
     _onShelfConverter = onShelfConverter;
 }