public SelectionContextMenuItem(SelectionContextMenuItemClick contextMenuItemClick, string name)
 {
     ContextMenuItemClickCommand = new DelegateCommand <Period>(x => contextMenuItemClick(x));
     Name = name;
 }
 public SelectionContextMenuItem(SelectionContextMenuItemClick contextMenuItemClick, string name)
 {
     ContextMenuItemClickCommand = new DelegateCommand<Period>(x => contextMenuItemClick(x));
     this.Name = name;
 }