public void DecrementCount()
        {
            var count = this.m_state.Count;

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