Beispiel #1
0
 void When(DescribedTodoListItem @event)
 {
     /* just so you can see we really get to this point */
 }
Beispiel #2
0
 protected bool Equals(DescribedTodoListItem other)
 {
     return(string.Equals(Description, other.Description) && Id.Equals(other.Id));
 }
Beispiel #3
0
 void When(DescribedTodoListItem @event)
 {
     _items.Find(item => item.Id == @event.Id).Play(@event);
 }