Ejemplo n.º 1
0
        public void DecrementCount()
        {
            var count = this.m_state.Count;

            count--;
            this.m_state = new CounterState(count);
            BroadcastStateChanged();
        }
Ejemplo n.º 2
0
 public CounterStore()
 {
     m_state = new CounterState(0);
 }