public SelectClassifierMixin(
     IClassifierSelectionItemsSource itemsSource,
     IChangeTypeCommand command)
 {
     _itemsSource = itemsSource;
     _command = command;
 }
 public SelectClassifierWithNullItemMixin(
     IClassifierSelectionItemsSource itemsSource,
     IChangeTypeToNullCommand command):
         base(itemsSource,command)
 {
     _command = command;
 }