Esempio n. 1
0
 internal SortingManagerCommand(C child, C target, SortingManagerCommandType type)
     : this()
 {
     Child  = child;
     Target = target;
     Type   = type;
 }
Esempio n. 2
0
 internal SortingManagerCommand(C child, SortingManagerCommandType type)
     : this(child, null, type)
 {
 }