예제 #1
0
파일: Product.cs 프로젝트: keeed/Venturi
        public void IncreaseProductStock(int amountToIncrease)
        {
            _stock = _stock.IncreaseQuantity(amountToIncrease);

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