Exemplo n.º 1
0
 protected bool Equals(AddedNewTodoList other)
 {
     return(Id.Equals(other.Id) && string.Equals(Name, other.Name));
 }
Exemplo n.º 2
0
 void When(AddedNewTodoList @event)
 {
     Id     = new TodoListId(@event.Id);
     _items = new List <TodoListItem>();
 }