Esempio n. 1
0
        public override void Handle(AdjustInventoryCountCommand command)
        {
            InventoryItem inventoryItem = _repository.GetById(command.Id);

            inventoryItem.AdjustInventoryCount(command.AdjustBy);

            _repository.Save(inventoryItem);
        }