public ProductService() { _inventory = ProductInventory.ProductInventory.Instance; }
public ProductService(ILogger <ProductService> logger, ProductInventory.ProductInventory inventory) { _logger = logger; _inventory = inventory; }