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