/// <summary> /// Deletes the user. /// </summary> public void RestoreUser() { this.IsNew = false; this.IsDeleted = false; var @event = new UserRestored(this.Id); this.ApplyChange(@event); }
private void Apply(UserRestored @event) { //TODO: Investigate why we need this. }