private void HandleChangeButtonText(CountUpdatedEvent evt)
 {
     view.ChangeButtonText (evt.Count);
 }
 public CountUpdatedEvent(CountUpdatedEvent.Type type, int count)
     : base(type)
 {
     Count = count;
 }