public StockState HandleTimeout(IncreaseSellingPointCommand command) { if (command.Version == _version) Bus.Send(new SellPriceIncreasedEvent(_id, command.SellingPoint)); return this; }
public void HandleTimeout(IncreaseSellingPointCommand command) { _state = _state.HandleTimeout(command); }
public StockState HandleTimeout(IncreaseSellingPointCommand command) { return(this); }
public StockState HandleTimeout(IncreaseSellingPointCommand command) { return this; }