Ejemplo n.º 1
0
 private void Apply(PlayerAddedToCompetition @event)
 {
     _players.Add(@event.PlayarId);
 }
Ejemplo n.º 2
0
 public void AddPlayer(Guid id)
 {
     var @event = new PlayerAddedToCompetition { PlayarId = id};
     Apply(@event);
     Append(@event);
 }