public void When(StartSimpleStory c)
        {
            var id = _state.GetNext(s => new StoryId(s));

            Apply(new SimpleStoryStarted(id, c.Name));
        }
 public void When(StartSimpleStory c)
 {
     var id = _state.GetNext(s => new StoryId(s));
     Apply(new SimpleStoryStarted(id, c.Name));
 }