public ElementNodeEventArgs(DbNavigationNodeType nodeType, string instanceId)
 {
     NodeType   = nodeType;
     InstanceId = instanceId;
 }
 protected virtual void OnNodeSelected(DbNavigationNodeType nodeType, string instanceId)
 {
     NodeSelected?.Invoke(this, new ElementNodeEventArgs(nodeType, instanceId));
 }