Exemplo n.º 1
0
            public void UpdateDescription(string description)
            {
                var @event = new TaskDescriptionUpdated(description);

                EnqueueEvent(@event);
                Apply(@event);
            }
Exemplo n.º 2
0
 public void Apply(TaskDescriptionUpdated @event)
 {
     Description = @event.Description;
 }