public MovePlaceholderCommand(PlaceholderViewEventArgs args, PlaceHolderCollectionModel collectionModel, ScreenView screenView, ScreenModel screenModel,
                               PlaceholderUserChangeValidator moveValidator)
 {
     this.args            = args;
     this.collectionModel = collectionModel;
     this.screenView      = screenView;
     this.screenModel     = screenModel;
     this.moveValidator   = moveValidator;
 }
Beispiel #2
0
 public MoveSelectedPlaceholderCommand(SelectionViewEventArgs args, SelectionModel selectionModel, PlaceholderUserChangeValidator moveValidator)
 {
     this.args           = args;
     this.selectionModel = selectionModel;
     this.moveValidator  = moveValidator;
 }