public void Run() { var person = new Person("Kristina", "Parker"); // Change Last Name person.LastName = "Smith"; }
public PersonLastNameChangedEvent(Person person, string oldValue, string newValue ) { this.Person = person; this.OldValue = oldValue; this.NewValue = newValue; }