internal void SetEntity(Entity entity) { Debug.Assert(entity != null, "Entity parameter should not be null."); _entity = entity; }
public EntityNameChangedEventArgs(Entity entity, string oldName, string newName) { this.Entity = entity; this.NewName = newName; this.OldName = oldName; }