Ejemplo n.º 1
0
 /// <summary>
 /// Executes in the given dimension
 /// </summary>
 /// <param name="dimension">The dimension</param>
 /// <returns>The function running the command</returns>
 public Function Dimension(DimensionObjects.IDimension dimension)
 {
     ForFunction.AddCommand(new ExecuteDimension(dimension));
     return(ForFunction);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Intializes a new <see cref="ExecuteDimension"/> command
 /// </summary>
 /// <param name="dimension">The dimension the command should be executed in</param>
 public ExecuteDimension(DimensionObjects.IDimension dimension)
 {
     Dimension = dimension;
 }