コード例 #1
0
ファイル: Product.cs プロジェクト: keeed/Venturi
        public void IncreaseProductStock(int amountToIncrease)
        {
            _stock = _stock.IncreaseQuantity(amountToIncrease);

            _events.Add(new ProductStockIncreasedEvent(_productId.Value, _stock.Quantity));
        }