private void TreeNodeDocuments_Detach(TreeNodeDocument entity)
		{
			this.SendPropertyChanging();
			entity.TreeNode = null;
		}
		private void TreeNodeDocuments_Attach(TreeNodeDocument entity)
		{
			this.SendPropertyChanging();
			entity.Document = this;
		}