Exemple #1
0
 public static RemoveDependentViewModelCommand Create(
     IRegion region,
     IList oldItems,
     DependentViewModelActions action)
 {
     return(new RemoveDependentViewModelCommand(region, oldItems, action));
 }
 public static AddDependentViewModelCommand Create(
     IRegion region,
     IList newItems,
     IList oldItems,
     DependentViewModelActions action)
 {
     return(new AddDependentViewModelCommand(region, newItems, oldItems, action));
 }
Exemple #3
0
 private RemoveDependentViewModelCommand(
     IRegion region,
     IList oldItems,
     DependentViewModelActions action)
 {
     Region   = region;
     OldItems = oldItems;
     Action   = action;
 }
 private AddDependentViewModelCommand(
     IRegion region,
     IList newItems,
     IList oldItems,
     DependentViewModelActions action)
 {
     Region   = region;
     NewItems = newItems;
     OldItems = oldItems;
     Action   = action;
 }