Exemplo n.º 1
0
 public PriceState(VendingMachineState state, int priceInCents)
     : this(state.Context, state.ReturnTray, state.CoinSlot, state.ProductInfoRepository, state.Output, state.Vault, priceInCents)
 {
 }
Exemplo n.º 2
0
 public NoMoneyState(VendingMachineState state)
     : base(state.Context, state.ReturnTray, state.CoinSlot, state.ProductInfoRepository, state.Output, state.Vault)
 {
 }