Beispiel #1
0
        public StockState HandleTimeout(IncreaseSellingPointCommand command)
        {
            if (command.Version == _version)
                Bus.Send(new SellPriceIncreasedEvent(_id, command.SellingPoint));

            return this;
        }
Beispiel #2
0
 public void HandleTimeout(IncreaseSellingPointCommand command)
 {
     _state = _state.HandleTimeout(command);
 }
Beispiel #3
0
 public StockState HandleTimeout(IncreaseSellingPointCommand command)
 {
     return(this);
 }
Beispiel #4
0
 public StockState HandleTimeout(IncreaseSellingPointCommand command)
 {
     return this;
 }
Beispiel #5
0
 public void HandleTimeout(IncreaseSellingPointCommand command)
 {
     _state = _state.HandleTimeout(command);
 }